ECF 1.5
Neg.h
1#ifndef ECF_CARTESIAN_NEG_H
2#define ECF_CARTESIAN_NEG_H
3#include "Function.h"
4namespace cartesian{
5 template <typename Container, typename Result>
6 class Neg : public Function<Container,Result> {
7 public:
8 Neg();
9 ~Neg(){};
10 void evaluate(Container& container, Result& result);
11 };
12
13 template <typename Container, typename Result>
15 {
16 this->name_ = "neg";
17 this->numOfArgs_ = 1;
18 }
19
20 template <typename Container, typename Result>
21 void Neg<Container,Result>::evaluate(Container& container, Result& result)
22 {
23 typename Container::iterator it = container.begin();
24 result = -1 * (*it);
25 }
26}
27#endif //ECF_CARTESIAN_NEG_H
void evaluate(Container &container, Result &result)
Definition: Neg.h:21