Commit 8a70122d authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Refactoring he code.

parent 481d1209
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
add_subdirectory( heat-equation )
add_subdirectory( navier-stokes )
#add_subdirectory( mean-curvature-flow )
#add_subdirectory( hamilton-jacobi )
add_subdirectory( hamilton-jacobi )
add_subdirectory( hamilton-jacobi-parallel )
add_subdirectory( fast-sweeping )
add_subdirectory( hamilton-jacobi-parallel-map )
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ bool tnlFastSweeping< tnlGrid< 2,MeshReal, Device, MeshIndex >, Real, Index > ::
		   return false;
	}

	h = Mesh.getHx();
	h = Mesh.getSpaceSteps().x();
	counter = 0;

	const tnlString& exact_input = parameters.getParameter< tnlString >( "exact-input" );
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ bool tnlFastSweeping< tnlGrid< 2,MeshReal, Device, MeshIndex >, Real, Index > ::
		   return false;
	}

	h = Mesh.getHx();
	h = Mesh.getSpaceSteps().x();
	counter = 0;

	const tnlString& exact_input = parameters.getParameter< tnlString >( "exact-input" );
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ bool tnlFastSweeping< tnlGrid< 2,MeshReal, Device, MeshIndex >, Real, Index > ::
		   return false;
	}

	h = Mesh.getHx();
	h = Mesh.getSpaceSteps().x();
	counter = 0;

	const tnlString& exact_input = parameters.getParameter< tnlString >( "exact-input" );
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ bool tnlFastSweeping< tnlGrid< 2,MeshReal, Device, MeshIndex >, Real, Index > ::
		   return false;
	}

	h = Mesh.getHx();
	h = Mesh.getSpaceSteps().x();
	counter = 0;

	const tnlString& exact_input = parameters.getParameter< tnlString >( "exact-input" );
Loading