From a7dc718f2caf9f9be293b72f3da5b15437192b9d Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Tue, 20 Nov 2012 11:27:21 +0100 Subject: [PATCH] changed: use human friendly 1 based loadcase numbering --- examples/upscale_elasticity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/upscale_elasticity.cpp b/examples/upscale_elasticity.cpp index e70d706..fb6bc3d 100644 --- a/examples/upscale_elasticity.cpp +++ b/examples/upscale_elasticity.cpp @@ -282,7 +282,7 @@ int main(int argc, char** argv) #pragma omp parallel for schedule(static) for (int i=0;i<6;++i) { upscale.assemble(i,false); - std::cout << "solving case " << i << "..." << "\n"; + std::cout << "solving case " << i+1 << "..." << "\n"; upscale.solve(p.solver,p.ltol,i); upscale.A.expandSolution(field[i],upscale.u[i]); #define CLAMP(x) (fabs(x)<1.e-5?0.f:x)