Migration from SVN

This commit is contained in:
quemy 2012-08-30 11:30:11 +02:00
commit 8cd56f37db
29069 changed files with 0 additions and 4096888 deletions

View file

@ -0,0 +1,17 @@
#include <Sym.h>
#include <FunDef.h>
#include <iostream>
using namespace std;
int main() {
Sym v = SymConst(1.2);
Sym g = exp(-sqr(v));
cout << g << endl;
cout << differentiate(g, v.token()) << endl;
}