Skip to content

Commit

Permalink
Minor fix for logical AND
Browse files Browse the repository at this point in the history
  • Loading branch information
prabindh committed Oct 13, 2023
1 parent d347f29 commit 0331a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unidock/src/lib/vina.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1560,7 +1560,7 @@ void Vina::global_search(const int exhaustiveness, const int n_poses, const doub
// case g is non strictly increasing
if (m_sf_choice == SF_VINA || m_sf_choice == SF_VINARDO) {
// Refine poses if no_refine is false and got receptor
if (!m_no_refine & m_receptor_initialized) {
if (!m_no_refine && m_receptor_initialized) {
change g(m_model.get_size());
quasi_newton quasi_newton_par;
const vec authentic_v(1000, 1000, 1000);
Expand Down

0 comments on commit 0331a44

Please sign in to comment.