From b878c676d18db38ad233f200f4c9a0443644611a Mon Sep 17 00:00:00 2001 From: jofret Date: Fri, 23 Feb 2007 16:42:06 +0000 Subject: * src/auxiliaryFunctions/includes : Add includes directory for profiling functions. * src/auxiliaryFunctions/*/*.h : Moving headers to includes. --- src/auxiliaryFunctions/find/find.h | 35 ----------------------------- src/auxiliaryFunctions/includes/find.h | 35 +++++++++++++++++++++++++++++ src/auxiliaryFunctions/includes/isEmpty.h | 37 +++++++++++++++++++++++++++++++ src/auxiliaryFunctions/includes/sign.h | 28 +++++++++++++++++++++++ src/auxiliaryFunctions/isempty/isEmpty.h | 37 ------------------------------- src/auxiliaryFunctions/sign/sign.h | 28 ----------------------- 6 files changed, 100 insertions(+), 100 deletions(-) delete mode 100644 src/auxiliaryFunctions/find/find.h create mode 100644 src/auxiliaryFunctions/includes/find.h create mode 100644 src/auxiliaryFunctions/includes/isEmpty.h create mode 100644 src/auxiliaryFunctions/includes/sign.h delete mode 100644 src/auxiliaryFunctions/isempty/isEmpty.h delete mode 100644 src/auxiliaryFunctions/sign/sign.h diff --git a/src/auxiliaryFunctions/find/find.h b/src/auxiliaryFunctions/find/find.h deleted file mode 100644 index 80309109..00000000 --- a/src/auxiliaryFunctions/find/find.h +++ /dev/null @@ -1,35 +0,0 @@ -/* -** -*- C -*- -** -** find.h -** Made by Bruno JOFRET -** -** Started on Thu Feb 8 10:12:17 2007 jofret -** Last update Tue Feb 13 17:06:30 2007 jofret -** -** Copyright INRIA 2007 -*/ - -#ifndef __FIND_H__ -#define __FIND_H__ - -/* -** \brief Float Find function -*/ -int sfinda(float* x, int size); - -/* -** \brief Double Find function -*/ -int dfinda(double*x, int size); - -/* -** \brief Float Complex Find function -*/ -int cfinda(floatComplex* z, int size); - -/* -** \brief Double Complex Find function -*/ -int zfinda(doubleComplex* z, int size); -#endif /* !__FIND_H__ */ diff --git a/src/auxiliaryFunctions/includes/find.h b/src/auxiliaryFunctions/includes/find.h new file mode 100644 index 00000000..80309109 --- /dev/null +++ b/src/auxiliaryFunctions/includes/find.h @@ -0,0 +1,35 @@ +/* +** -*- C -*- +** +** find.h +** Made by Bruno JOFRET +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Tue Feb 13 17:06:30 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __FIND_H__ +#define __FIND_H__ + +/* +** \brief Float Find function +*/ +int sfinda(float* x, int size); + +/* +** \brief Double Find function +*/ +int dfinda(double*x, int size); + +/* +** \brief Float Complex Find function +*/ +int cfinda(floatComplex* z, int size); + +/* +** \brief Double Complex Find function +*/ +int zfinda(doubleComplex* z, int size); +#endif /* !__FIND_H__ */ diff --git a/src/auxiliaryFunctions/includes/isEmpty.h b/src/auxiliaryFunctions/includes/isEmpty.h new file mode 100644 index 00000000..40a9ad3e --- /dev/null +++ b/src/auxiliaryFunctions/includes/isEmpty.h @@ -0,0 +1,37 @@ +/* +** -*- C -*- +** +** find.h +** Made by Bruno JOFRET +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Wed Feb 14 14:43:53 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __IS_EMPTY_H__ +#define __IS_EMPTY_H__ + +#include + +/* +** \brief Float Is Empty function +*/ +bool sisEmptya(float* x, int size); + +/* +** \brief Double Is Empty function +*/ +bool disEmptya(double*x, int size); + +/* +** \brief Float Complex Is Empty function +*/ +bool cisEmptya(floatComplex* z, int size); + +/* +** \brief Double Complex Is Empty function +*/ +bool zisEmptya(doubleComplex* z, int size); +#endif /* !__IS_EMPTY_H__ */ diff --git a/src/auxiliaryFunctions/includes/sign.h b/src/auxiliaryFunctions/includes/sign.h new file mode 100644 index 00000000..425ace80 --- /dev/null +++ b/src/auxiliaryFunctions/includes/sign.h @@ -0,0 +1,28 @@ +/* +** -*- C -*- +** +** sign.h +** Made by Bruno JOFRET +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Thu Feb 8 10:31:00 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __SIGN_H__ +#define __SIGN_H__ + +#include + +/* +** \brief Float Signe function +*/ +int ssigns(float); + +/* +** \brief Double Signe function +*/ +int dsigns(double); + +#endif /* !__SIGN_H__ */ diff --git a/src/auxiliaryFunctions/isempty/isEmpty.h b/src/auxiliaryFunctions/isempty/isEmpty.h deleted file mode 100644 index 40a9ad3e..00000000 --- a/src/auxiliaryFunctions/isempty/isEmpty.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -** -*- C -*- -** -** find.h -** Made by Bruno JOFRET -** -** Started on Thu Feb 8 10:12:17 2007 jofret -** Last update Wed Feb 14 14:43:53 2007 jofret -** -** Copyright INRIA 2007 -*/ - -#ifndef __IS_EMPTY_H__ -#define __IS_EMPTY_H__ - -#include - -/* -** \brief Float Is Empty function -*/ -bool sisEmptya(float* x, int size); - -/* -** \brief Double Is Empty function -*/ -bool disEmptya(double*x, int size); - -/* -** \brief Float Complex Is Empty function -*/ -bool cisEmptya(floatComplex* z, int size); - -/* -** \brief Double Complex Is Empty function -*/ -bool zisEmptya(doubleComplex* z, int size); -#endif /* !__IS_EMPTY_H__ */ diff --git a/src/auxiliaryFunctions/sign/sign.h b/src/auxiliaryFunctions/sign/sign.h deleted file mode 100644 index 425ace80..00000000 --- a/src/auxiliaryFunctions/sign/sign.h +++ /dev/null @@ -1,28 +0,0 @@ -/* -** -*- C -*- -** -** sign.h -** Made by Bruno JOFRET -** -** Started on Thu Feb 8 10:12:17 2007 jofret -** Last update Thu Feb 8 10:31:00 2007 jofret -** -** Copyright INRIA 2007 -*/ - -#ifndef __SIGN_H__ -#define __SIGN_H__ - -#include - -/* -** \brief Float Signe function -*/ -int ssigns(float); - -/* -** \brief Double Signe function -*/ -int dsigns(double); - -#endif /* !__SIGN_H__ */ -- cgit