Commit 2719f4fd authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Commented out unused computed value in HeatEquation benchmark's ExplicitUpdater

parent 833011ad
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -187,7 +187,8 @@ class ExplicitUpdater
               typedef Functions::FunctionAdapter< MeshType, RightHandSide > FunctionAdapter;
               ( *userData.fu )( entity )  = 
                  ( *userData.differentialOperator )( *userData.u, entity, userData.time );
                   + FunctionAdapter::getValue( *userData.rightHandSide, entity, userData.time );
               // TODO: fix the right hand side here !!!
//                   + FunctionAdapter::getValue( *userData.rightHandSide, entity, userData.time );
               
            }

@@ -200,6 +201,7 @@ class ExplicitUpdater
               typedef Functions::FunctionAdapter< MeshType, RightHandSide > FunctionAdapter;
               userData.real_fu[ entityIndex ] = 
                       ( *userData.differentialOperator )( mesh, userData.real_u, entityIndex, coordinates, userData.time );
               // TODO: fix the right hand side here !!!
                    //   + 0.0;
            }