Skip to content

Commit

Permalink
fix: update boost::filesystem include header (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
caic99 authored Jan 25, 2025
1 parent cb0799b commit 2c4a471
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions unidock/src/lib/vina.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <boost/program_options.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/filesystem/exception.hpp>
#include <boost/filesystem/convenience.hpp> // filesystem::basename
#include <boost/filesystem.hpp> // filesystem::basename
#include <boost/thread/thread.hpp> // hardware_concurrency // FIXME rm ?
#include <boost/algorithm/string.hpp>
// #include <openbabel/mol.h>
Expand Down Expand Up @@ -216,7 +216,7 @@ class Vina {
sstm << "Performing docking (random seed: " << m_seed << ")";
doing(sstm.str(), m_verbosity, 0);
auto start = std::chrono::system_clock::now();

if (m_sf_choice == SF_VINA || m_sf_choice == SF_VINARDO) {
mc.do_docking<Config>(m_model_gpu, poses_gpu, m_precalculated_byatom_gpu, m_data_list_gpu, m_grid,
m_grid.corner1(), m_grid.corner2(), generator, m_verbosity, seed, bias_batch_list);
Expand Down
2 changes: 1 addition & 1 deletion unidock/src/split/split.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <boost/program_options.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/filesystem/exception.hpp>
#include <boost/filesystem/convenience.hpp> // filesystem::basename
#include <boost/filesystem.hpp> // filesystem::basename

#include "file.h"
#include "parse_error.h"
Expand Down

0 comments on commit 2c4a471

Please sign in to comment.