updated include dependencies

This commit is contained in:
maartenkeijzer 2007-09-23 08:35:51 +00:00
commit 40f5377cf1
21 changed files with 87 additions and 59 deletions

View file

@ -247,8 +247,6 @@ class Const : public FunDef {
}
Interval eval(const vector<Interval>& _, const vector<Interval>& inputs) const {
// Profil/Bias seems to have a problem with 0 * inf when the Interval is exact zero (fpe)
//if (value == 0.0) return Interval(-BiasEpsilon,BiasEpsilon);
return Interval(value);
}

View file

@ -23,8 +23,8 @@
#include <memory>
#include <iostream>
#include "Sym.h"
#include "Interval.h"
#include "sym/Sym.h"
#include "eval/Interval.h"
class FunDef {
public:

View file

@ -18,7 +18,7 @@
#ifndef SYMOPS_H
#define SYMOPS_H
#include "Sym.h"
#include "sym/Sym.h"
extern Sym operator+(Sym a, Sym b);
extern Sym operator*(Sym a, Sym b);