Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iakoviid committed Sep 10, 2022
1 parent ea4f351 commit ff0a060
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/preprocess/crhmc/crhmc_problem.h
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ class crhmc_problem {
#ifdef TIME_KEEPING
template <typename StreamType>
void print_preparation_time(StreamType& stream){
stream << "---Preparation Timing Informationn"<< std::endl;
stream << "---Preparation Timing Information"<< std::endl;
stream << "Rescale completed in time, ";
stream << rescale_duration.count() << " secs " << std::endl;
stream << "Split dense columns completed in time, ";
Expand Down
4 changes: 2 additions & 2 deletions include/random_walks/crhmc/crhmc_walk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct CRHMCWalk {
inline MT getPoints() { return (P.T * x).colwise() + P.y; }
// Returns the current point in the tranformed in the original space
inline Point getPoint() { return Point(P.T * x.col(0) + P.y); }

inline MT masked_choose(MT &x,MT &x_tilde,IVT &accept){
return accept.transpose().replicate(x.rows(), 1).select(x_tilde, x);
}
Expand Down Expand Up @@ -203,7 +203,7 @@ struct CRHMCWalk {
}
template<typename StreamType>
void print_timing_information(StreamType& stream) {
stream << "---Sampling Timing Informationn"<< std::endl;
stream << "---Sampling Timing Information"<< std::endl;
double DU_time = solver->DU_duration.count();
double DK_time = solver->approxDK_duration.count();
double H_time = H_duration.count();
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ else ()
TARGET_LINK_LIBRARIES(benchmarks_crhmc_sampling ${LP_SOLVE} ${MKL_LINK} ${QD_LIB} coverage_config)
TARGET_LINK_LIBRARIES(benchmarks_crhmc ${LP_SOLVE} ${MKL_LINK} ${QD_LIB} coverage_config)
TARGET_LINK_LIBRARIES(simple_mc_integration ${LP_SOLVE} ${MKL_LINK} coverage_config)
TARGET_LINK_LIBRARIES(ode_solvers_test ${LP_SOLVE} ${IFOPT} ${IFOPT_IPOPT} ${PTHREAD} ${GMP} ${MPSOLVE} ${FFTW3} ${MKL_LINK} QD_LIB coverage_config)
TARGET_LINK_LIBRARIES(ode_solvers_test ${LP_SOLVE} ${IFOPT} ${IFOPT_IPOPT} ${PTHREAD} ${GMP} ${MPSOLVE} ${FFTW3} ${MKL_LINK} ${QD_LIB} coverage_config)
TARGET_LINK_LIBRARIES(boundary_oracles_test ${LP_SOLVE} ${IFOPT} ${IFOPT_IPOPT} ${PTHREAD} ${GMP} ${MPSOLVE} ${FFTW3} ${MKL_LINK} coverage_config)
TARGET_LINK_LIBRARIES(root_finders_test ${PTHREAD} ${GMP} ${MPSOLVE} ${FFTW3} ${MKL_LINK} coverage_config)
TARGET_LINK_LIBRARIES(crhmc_polytope_preparation_test ${PTHREAD} ${GMP} ${MPSOLVE} ${FFTW3} ${MKL_LINK} ${QD_LIB} coverage_config)
Expand Down

0 comments on commit ff0a060

Please sign in to comment.