Skip to content

Commit

Permalink
Fix dumb rebase errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelesh committed Dec 2, 2023
1 parent 7ed4915 commit b22cfcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions resolve/LinSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ namespace ReSolve
return conv_cond_;
}

bool LinSolverIterativeFGMRES::getFlexible()
bool LinSolverIterative::getFlexible()
{
return flexible_;
}
Expand All @@ -198,7 +198,7 @@ namespace ReSolve
this->conv_cond_ = new_conv_cond;
}

void LinSolverIterativeFGMRES::setFlexible(bool new_flex)
void LinSolverIterative::setFlexible(bool new_flex)
{
this->flexible_ = new_flex;
}
Expand Down
3 changes: 0 additions & 3 deletions tests/functionality/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,15 @@ if(RESOLVE_USE_CUDA)
# Build KLU+GLU test
add_executable(klu_glu_test.exe testKLU_GLU.cpp)
target_link_libraries(klu_glu_test.exe PRIVATE ReSolve)
<<<<<<< HEAD

# Build randSolver test
add_executable(rand_gmres_cuda_test.exe testRandGMRES_Cuda.cpp)
target_link_libraries(rand_gmres_cuda_test.exe PRIVATE ReSolve)
=======

# System solver test with GLU
add_executable(sys_cuda_test.exe testSysCuda.cpp)
target_link_libraries(sys_cuda_test.exe PRIVATE ReSolve)

>>>>>>> e627c59 (First stab at system solver.)
endif(RESOLVE_USE_CUDA)


Expand Down

0 comments on commit b22cfcd

Please sign in to comment.