Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.10)
set(MOORDYN_MAJOR_VERSION 2)
set(MOORDYN_MINOR_VERSION 6)
set(MOORDYN_PATCH_VERSION 0)
set(MOORDYN_PATCH_VERSION 1)
set(MOORDYN_VERSION ${MOORDYN_MAJOR_VERSION}.${MOORDYN_MINOR_VERSION})
project(Moordyn VERSION ${MOORDYN_VERSION})

Expand Down
2 changes: 1 addition & 1 deletion tests/fortran_bindings.f90
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ program main
stop 1
end if
do j = 1, 3
x(3 * i + j) = r(j)
x(3 * (i_point - 1) + (j - 1)) = r(j - 1)
end do
end do

Expand Down
8 changes: 4 additions & 4 deletions tests/vtk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ write_vtk_by_instances()
}
std::stringstream filepath;
filepath << fs::temp_directory_path().string() << "/"
<< "vtk_body_" << body_i << ".00000.vtu";
<< "vtk_body_" << body_i << ".00000.vtp";
std::cout << "*** Saving on '" << filepath.str().c_str() << "'..."
<< std::endl;

Expand Down Expand Up @@ -116,7 +116,7 @@ write_vtk_by_instances()
}
std::stringstream filepath;
filepath << fs::temp_directory_path().string() << "/"
<< "vtk_rod_" << rod_i << ".00000.vtu";
<< "vtk_rod_" << rod_i << ".00000.vtp";
std::cout << "*** Saving on '" << filepath.str().c_str() << "'..."
<< std::endl;

Expand Down Expand Up @@ -146,7 +146,7 @@ write_vtk_by_instances()
}
std::stringstream filepath;
filepath << fs::temp_directory_path().string() << "/"
<< "vtk_point_" << point_i << ".00000.vtu";
<< "vtk_point_" << point_i << ".00000.vtp";
std::cout << "*** Saving on '" << filepath.str().c_str() << "'..."
<< std::endl;

Expand Down Expand Up @@ -176,7 +176,7 @@ write_vtk_by_instances()
}
std::stringstream filepath;
filepath << fs::temp_directory_path().string() << "/"
<< "vtk_line_" << line_i << ".00000.vtu";
<< "vtk_line_" << line_i << ".00000.vtp";
std::cout << "*** Saving on '" << filepath.str().c_str() << "'..."
<< std::endl;

Expand Down
Loading