Changeset 70e11d for molecuilder/src


Ignore:
Timestamp:
Jan 10, 2010, 7:09:56 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
00b5802
Parents:
2c69a9
Message:

Inclusion of config.h was missing.

This caused a bug with GSL's inline function definition.

Signed-off-by: Frederik Heber <heber@tabletINS.(none)>

Location:
molecuilder/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/gslmatrix.hpp

    r2c69a9 r70e11d  
    1212
    1313/*********************************************** includes ***********************************/
     14
     15// include config.h
     16#ifdef HAVE_CONFIG_H
     17#include <config.h>
     18#endif
    1419
    1520#include <gsl/gsl_matrix.h>
     
    5156  bool IsNonNegative();
    5257  bool IsPositiveDefinite();
     58  double Determinant();
    5359
    5460  GSLMatrix& operator=(const GSLMatrix& rhs);
  • molecuilder/src/gslvector.hpp

    r2c69a9 r70e11d  
    1212
    1313/*********************************************** includes ***********************************/
     14
     15// include config.h
     16#ifdef HAVE_CONFIG_H
     17#include <config.h>
     18#endif
    1419
    1520#include <gsl/gsl_vector.h>
     
    3237  void SetFromDoubleArray(double *x);
    3338  double Get(size_t m);
    34   double Set(size_t m, double x);
     39  void Set(size_t m, double x);
    3540  double *Pointer(size_t m);
    3641  const double *const_Pointer(size_t m);
  • molecuilder/src/linearsystemofequations.hpp

    r2c69a9 r70e11d  
    99
    1010/*********************************************** includes ***********************************/
     11
     12// include config.h
     13#ifdef HAVE_CONFIG_H
     14#include <config.h>
     15#endif
    1116
    1217#include <gsl/gsl_linalg.h>
Note: See TracChangeset for help on using the changeset viewer.