Skip to content
Snippets Groups Projects
Commit 29a6e532 authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

Analytical Solution for Poisson

parent d6ea3867
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ string BasisScalar::toString(void) const{
stringstream stream;
for(int i = 0; i < size; i++)
stream << (*basis)[i]->toString() << endl;
stream << "f(" << i << ") = " << (*basis)[i]->toString() << endl;
return stream.str();
}
......@@ -32,7 +32,7 @@ int basisTest(int argc, char** argv){
writer.setDomain(goe.getAll());
// Plot Basis //
TriNodeBasis b(3);
TriNodeBasis b(6);
cout << "Size: " << b.getSize() << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment