SyFi
0.3
|
#include <SyFi.h>
Go to the source code of this file.
Functions | |
int | main () |
int main | ( | ) |
Definition at line 7 of file line_ex3.cpp.
References SyFi::EQUAL_OR_DIE(), run_tests::f, SyFi::initSyFi(), and SyFi::Line::integrate().
{ initSyFi(3); // example that check scaling numeric h(1,100); // 1.0/100 numeric a(1,2); // 1.0/2 ex p0 = lst(a,a,a); ex p1 = lst(a+h,a,a); Line line(p0,p1); ex f = 1; ex intf = line.integrate(f); cout <<"intf "<<intf<<endl; EQUAL_OR_DIE(intf, "1/100"); return 0; }