Added the optimized implementation of acNodeIntegrate where boundconds are done before integration instead of after

This commit is contained in:
jpekkila
2019-08-05 20:10:13 +03:00
parent 8df49370c8
commit b73c2675e8
3 changed files with 128 additions and 21 deletions

View File

@@ -73,7 +73,8 @@ acStore(AcMesh* host_mesh)
AcResult
acIntegrate(const AcReal dt)
{
return acNodeIntegrate(nodes[0], dt);
acNodeIntegrate(nodes[0], dt);
return acBoundcondStep();
}
AcResult