Skip to content
Snippets Groups Projects
Commit 91780533 authored by Tobias Winkler's avatar Tobias Winkler
Browse files

remove old files

parent 15da3437
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@ set(BINARY ${CMAKE_PROJECT_NAME})
add_executable(${BINARY}_demo demo.cpp)
add_library(${BINARY}_lib STATIC
Formula.h Formula.cpp
Dist.h Dist.cpp
DistributionFactory.h DistributionFactory.cpp
Exceptions.h macros.h troolean.h troolean.cpp)
......
#include "Formula.h"
int Formula::bla(int arg1) {
return arg1 * 2;
}
ex Formula::giveIt2Me() {
symbol x("x");
return ex(x + x);
}
#ifndef PRODIGY_FORMULA_H
#define PRODIGY_FORMULA_H
#include <ginac/ginac.h>
using namespace GiNaC;
class Formula {
public:
static int bla(int arg1);
static ex giveIt2Me();
};
#endif //PRODIGY_FORMULA_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment