9 #ifndef IMPCORE_RIGID_BODY_TUNNELER_H
10 #define IMPCORE_RIGID_BODY_TUNNELER_H
12 #include <IMP/core/core_config.h>
17 #include <IMP/core/internal/tunneler_helpers.h>
18 #include <Eigen/Dense>
19 #include <Eigen/Geometry>
21 #include <boost/ptr_container/ptr_vector.hpp>
23 IMPCORE_BEGIN_NAMESPACE
64 double move_probability = 1.);
78 void add_entry_point(
Floats fl);
82 unsigned get_number_of_rejected_moves()
const {
return num_rejected_; }
83 unsigned get_number_of_proposed_moves()
const {
return num_proposed_; }
84 unsigned get_number_of_impossible_moves()
const {
return num_impossible_; }
85 unsigned get_number_of_calls()
const {
return num_calls_; }
97 static void set_reduced_coordinates(
Model* m,
109 unsigned get_closest_entry_point(
const internal::Coord& x)
const;
114 double k_, move_probability_;
115 unsigned num_calls_, num_proposed_, num_rejected_, num_impossible_;
116 boost::ptr_vector<internal::Transformer> last_transformations_;
117 std::vector<internal::Coord> entries_;
120 IMPCORE_END_NAMESPACE
Simple Monte Carlo optimizer.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
virtual void do_reject()=0
Implement reset_proposed_move()
Return value of the MonteCarloMover::propose() function.
Class for storing model, its restraints, constraints, and particles.
A base class for classes which perturb particles.
functionality for defining rigid bodies
The base class for movers for Monte Carlo optimization.
virtual MonteCarloMoverResult do_propose()=0
Implement propose_move()
Modify the transformation of a rigid body.
virtual ModelObjectsTemp do_get_inputs() const =0
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.