|
Rosetta 3.5
|
#include <InteractionGraphBase.hh>


Public Member Functions | |
| virtual | ~InteractionGraphBase () |
| destructor More... | |
| InteractionGraphBase (int num_nodes) | |
| main constructor More... | |
| virtual int | get_num_nodes_v () const |
| int | get_num_nodes () const |
| virtual void | initialize (rotamer_set::RotamerSetsBase const &rot_sets)=0 |
| void | set_num_states_for_node (int node, int num_states) |
| sets the number of states for a node of a particular index NEW REQUIREMENT: Nodes must have their num-states set in ascending order by node index; that is, node 1 must go first, node 2 next, and so on. More... | |
| int | get_num_states_for_node (int node) const |
| returns the number of states for a particular node More... | |
| int | get_num_total_states () const |
| virtual core::PackerEnergy | get_one_body_energy_for_node_state (int node, int state)=0 |
| void | add_edge (int node1, int node2) |
| creates a new edge between nodes index1 and index2. Nodes do not have to be listed in order More... | |
| bool | get_edge_exists (int node1, int node2) |
| returns true if an edge between node1 and node2 exists More... | |
| void | drop_all_edges_for_node (int node) |
| deletes all edges adjacent to the node specified More... | |
| void | print_vertices () const |
| calls print() on each of the nodes in the graph More... | |
| virtual void | print () const |
| void | output_connectivity (std::ostream &os) const |
| writes out a list of all the edges in the graph More... | |
| void | output_dimacs (std::ostream &os) const |
| writes out a connectivity description of the graph in the famous dimacs format. (where the first column "DIMACS:" should be sed'ed out) More... | |
| virtual void | prepare_for_simulated_annealing () |
| iterate across edges and nodes and allow them to prepare for simulated annealing More... | |
| virtual void | blanket_assign_state_0 ()=0 |
| virtual core::PackerEnergy | set_state_for_node (int node_ind, int new_state)=0 |
| virtual core::PackerEnergy | set_network_state (ObjexxFCL::FArray1_int &node_states)=0 |
| virtual void | consider_substitution (int node_ind, int new_state, core::PackerEnergy &delta_energy, core::PackerEnergy &prev_energy_for_node)=0 |
| virtual core::PackerEnergy | commit_considered_substitution ()=0 |
| virtual core::PackerEnergy | get_energy_current_state_assignment ()=0 |
| void | set_edge_weight (int node1, int node2, Real edge_weight) |
| Real | get_edge_weight (int node1, int node2) const |
| virtual int | get_edge_memory_usage () const =0 |
| virtual void | print_current_state_assignment () const =0 |
| virtual void | set_errorfull_deltaE_threshold (core::PackerEnergy deltaE)=0 |
| bool | any_vertex_state_unassigned () const |
| Returns true if any node in the graph is in state 0, the unassigned state. More... | |
| void | add_to_one_body_energies (ObjexxFCL::FArray1< core::PackerEnergy > &one_body_energies) |
| takes one FArray of energies – one energy for each state for each node More... | |
| void | update_one_body_energies (ObjexxFCL::FArray1< core::PackerEnergy > &old_energy1b, ObjexxFCL::FArray1< core::PackerEnergy > &new_energy1b) |
| decrements the one body energies by the values held in old_energy1b, increments the one body energies by the values held in new_energy1b, and copies new_energy1b into old_energy1b. More... | |
| void | zero_one_body_energies_for_node (int node) |
| void | add_to_nodes_one_body_energy (int node_ind, utility::vector1< core::PackerEnergy > const &one_body_energies) |
| void | add_to_nodes_one_body_energy (int node_ind, ObjexxFCL::FArray1< core::PackerEnergy > const &one_body_energies) |
| void | add_to_nodes_one_body_energy (int node_ind, int state_id, core::PackerEnergy const one_body_energy) |
| interface to PrecomputedPairEnergiesNode::add_to_nodes_one_body_energy More... | |
| void | set_number_of_energy_sum_vertex_groups (int num_groups) |
| a user may define subsets of the vertex set for which they would like to know the internal energy sum. For instance in a graph with 6 vertices, {a,b,c,d,e,f} a user may be interested in the sum of the one- and two-body energies for vertices {a,b,c}. The graph will return sum of the one body energies for vertices a b and c and also any two-body energies for the edges in the subgraph induced by a,b, and c. (In this case, edges {a,b}, {a,c} and {b,c} if these edges are part of the graph. The edge {a,d} will not be counted if it is part of the graph.) More... | |
| void | set_vertex_member_of_group (int vertex, int group) |
| a user may define subsets of the vertex set for which they would like to know the internal energy sum. For instance in a graph with 6 vertices, {a,b,c,d,e,f} a user may be interested in the sum of the one- and two-body energies for vertices {a,b,c}. The graph will return sum of the one body energies for vertices a b and c and also any two-body energies for the edges in the subgraph induced by a,b, and c. (In this case, edges {a,b}, {a,c} and {b,c} if these edges are part of the graph. The edge {a,d} will not be counted if it is part of the graph.) More... | |
| void | print_vertex_groups () |
| virtual core::PackerEnergy | get_energy_sum_for_vertex_group (int group_id)=0 |
| int | count_connected_components_and_initialize_vertex_groups () |
| makes a depth first traversal of the graph, counting the number of connected components, and initializes the vertex group memberships to reflect the connected components. Returns the number of connected components in the graph. More... | |
| void | note_vertex_reached (int node_index) |
| marks a vertex as belonging to the connected component currently being traversed in the depth first traversal. More... | |
| bool | vertex_already_reached (int node_index) |
| used by class NodeBase during the depth-first traversal to determine the number of connected components in the graph. returns true if the dft has already reached the node. More... | |
| bool | get_vertex_member_of_energy_sum_group (int node_index, int group_id) |
| virtual unsigned int | getTotalMemoryUsage () const |
| void | reset_edge_list_iterator_for_node (int node_index) const |
| set the Graph's (single) edge list iterator to the beginning of the edge list for a particular node More... | |
| void | increment_edge_list_iterator () const |
| increment the (single) edge list iterator to the next element More... | |
| bool | edge_list_iterator_at_end () const |
| test: have we arrived at the edge list end? More... | |
| EdgeBase const & | get_edge () const |
| return a const reference to an edge pointed at by the list iterator More... | |
| EdgeBase const * | find_edge (int node1, int node2) const |
| returns the edge connecting node1 and node2 More... | |
| EdgeBase * | find_edge (int node1, int node2) |
| virtual NodeBase * | create_new_node (int node_index, int num_states)=0 |
| virtual EdgeBase * | create_new_edge (int index1, int index2)=0 |
| NodeBase * | get_node (int index) const |
| int | get_num_edges () const |
| std::list< EdgeBase * >::iterator | get_edge_list_begin () |
| std::list< EdgeBase * > ::const_iterator | get_edge_list_begin () const |
| std::list< EdgeBase * > ::const_iterator | get_edge_list_end () const |
Protected Member Functions | |
| virtual unsigned int | count_static_memory () const =0 |
| virtual unsigned int | count_dynamic_memory () const |
| void | drop_edge (std::list< EdgeBase * >::iterator edge) |
| removes edge from edge list at iterator iter More... | |
| int | get_node_state_offset (int index) const |
| bool | mine (EdgeBase const *edge) const |
Private Member Functions | |
| InteractionGraphBase () | |
| InteractionGraphBase (InteractionGraphBase const &) | |
| InteractionGraphBase & | operator= (InteractionGraphBase const &) |
Private Attributes | |
| int | num_ig_nodes_ |
| std::vector< NodeBase * > | ig_nodes_ |
| std::list< EdgeBase * > | ig_edge_list_ |
| std::vector< int > | node_state_offsets_ |
| int | num_total_states_ |
| EdgeBase * | focused_edge_ |
| std::list< EdgeBase * > ::const_iterator | focused_edge_iterator_ |
| std::list< EdgeBase * > ::const_iterator | focused_edge_iterator_end_ |
| int | num_energy_sum_groups_ |
| ObjexxFCL::FArray2D_bool | energy_sum_group_membership_ |
| ObjexxFCL::FArray1D_int | component_membership_ |
Friends | |
| class | NodeBase |
| class | EdgeBase |
Definition at line 308 of file InteractionGraphBase.hh.
|
virtual |
destructor
InteractionGraphBase::~InteractionGraphBase
| @par | Global Read: |
Definition at line 731 of file InteractionGraphBase.cc.
References ig_edge_list_, ig_nodes_, and num_ig_nodes_.
| core::pack::interaction_graph::InteractionGraphBase::InteractionGraphBase | ( | int | num_ig_nodes) |
main constructor
InteractionGraphBase::InteractionGraphBase
| num_ig_nodes | - [in] - number of nodes that this graph will contain |
Definition at line 768 of file InteractionGraphBase.cc.
|
private |
|
private |
creates a new edge between nodes index1 and index2. Nodes do not have to be listed in order
InteractionGraphBase::add_edge
| index1 | - [in] - index of one of the two nodes the edge is to connect |
| index2 | - [in] - index of the second of the two nodes the edge is to connect |
Definition at line 876 of file InteractionGraphBase.cc.
References create_new_edge(), focused_edge_, ig_edge_list_, and core::pack::interaction_graph::EdgeBase::set_pos_in_owners_list().
Referenced by core::pack::interaction_graph::PDInteractionGraph::add_edge(), protocols::flexpack::rotamer_set::FlexbbRotamerSets::compute_one_body_energies_for_otf_ig(), and protocols::flexpack::rotamer_set::FlexbbRotamerSets::compute_sr_one_body_energies_for_flexsets().
| void core::pack::interaction_graph::InteractionGraphBase::add_to_nodes_one_body_energy | ( | int | node_ind, |
| utility::vector1< core::PackerEnergy > const & | one_body_energies | ||
| ) |
| node_ind | - [in] - the node in question |
| one_body_energies | - [in] - the energies to be added to the one-body energies on that node. One entry per state. |
Definition at line 1214 of file InteractionGraphBase.cc.
Referenced by protocols::flexpack::rotamer_set::FlexbbRotamerSets::compute_onebody_interactions_with_background().
| void core::pack::interaction_graph::InteractionGraphBase::add_to_nodes_one_body_energy | ( | int | node_ind, |
| ObjexxFCL::FArray1< core::PackerEnergy > const & | one_body_energies | ||
| ) |
| void core::pack::interaction_graph::InteractionGraphBase::add_to_nodes_one_body_energy | ( | int | node_ind, |
| int | state_id, | ||
| core::PackerEnergy const | one_body_energy | ||
| ) |
interface to PrecomputedPairEnergiesNode::add_to_nodes_one_body_energy
| node_ind | - [in] - the index of the node in question |
| state_id | - [in] - the state in question |
| one_body_energy | - [in] - the energy to be added |
Definition at line 1246 of file InteractionGraphBase.cc.
| void core::pack::interaction_graph::InteractionGraphBase::add_to_one_body_energies | ( | ObjexxFCL::FArray1< core::PackerEnergy > & | one_body_energies) |
takes one FArray of energies – one energy for each state for each node
InteractionGraphBase::add_to_one_body_energies
| one_body_energies | - [in] - the array of one body energies |
Definition at line 1141 of file InteractionGraphBase.cc.
| bool core::pack::interaction_graph::InteractionGraphBase::any_vertex_state_unassigned | ( | ) | const |
Returns true if any node in the graph is in state 0, the unassigned state.
InteractionGraphBase::output_dimacs
| @par | Global Read: |
Definition at line 1103 of file InteractionGraphBase.cc.
References get_node(), get_num_nodes(), and core::pack::interaction_graph::NodeBase::state_unassigned().
Referenced by protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::debug_note_projected_deltaE_of_considered_substitution().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
| int core::pack::interaction_graph::InteractionGraphBase::count_connected_components_and_initialize_vertex_groups | ( | ) |
makes a depth first traversal of the graph, counting the number of connected components, and initializes the vertex group memberships to reflect the connected components. Returns the number of connected components in the graph.
InteractionGraphBase:: count_connected_components_and_initialize_vertex_groups
| @par | Global Read: |
Definition at line 1439 of file InteractionGraphBase.cc.
References component_membership_, energy_sum_group_membership_, ig_nodes_, num_energy_sum_groups_, num_ig_nodes_, and vertex_already_reached().
|
protectedvirtual |
Reimplemented in protocols::flexpack::interaction_graph::FlexbbInteractionGraph, core::pack::interaction_graph::SymmOnTheFlyInteractionGraph, core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::OnTheFlyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph.
Definition at line 1354 of file InteractionGraphBase.cc.
References ig_edge_list_, and num_ig_nodes_.
Referenced by core::pack::interaction_graph::DoubleDensePDInteractionGraph::count_dynamic_memory(), core::pack::interaction_graph::DensePDInteractionGraph::count_dynamic_memory(), core::pack::interaction_graph::FASTERInteractionGraph::count_dynamic_memory(), core::pack::interaction_graph::PDInteractionGraph::count_dynamic_memory(), core::pack::interaction_graph::OnTheFlyInteractionGraph::count_dynamic_memory(), core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::count_dynamic_memory(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::count_dynamic_memory(), and getTotalMemoryUsage().
|
protectedpure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and core::pack::interaction_graph::SymmMinimalistInteractionGraph.
Referenced by getTotalMemoryUsage().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and core::pack::interaction_graph::SymmMinimalistInteractionGraph.
Referenced by add_edge().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and core::pack::interaction_graph::SymmMinimalistInteractionGraph.
| void core::pack::interaction_graph::InteractionGraphBase::drop_all_edges_for_node | ( | int | node) |
deletes all edges adjacent to the node specified
InteractionGraphBase::drop_all_edges_for_node
| node | - [in] - index of the node |
Definition at line 945 of file InteractionGraphBase.cc.
References core::pack::interaction_graph::NodeBase::drop_all_edges(), and get_node().
|
protected |
removes edge from edge list at iterator iter
InteractionGraphBase::drop_edge
| iter | - [in] - the iterator pointing at the edge that's deleting itself |
Definition at line 1636 of file InteractionGraphBase.cc.
References focused_edge_, and ig_edge_list_.
Referenced by core::pack::interaction_graph::EdgeBase::~EdgeBase().
| bool core::pack::interaction_graph::InteractionGraphBase::edge_list_iterator_at_end | ( | ) | const |
test: have we arrived at the edge list end?
Definition at line 1335 of file InteractionGraphBase.cc.
References focused_edge_iterator_, and focused_edge_iterator_end_.
| EdgeBase const * core::pack::interaction_graph::InteractionGraphBase::find_edge | ( | int | node1, |
| int | node2 | ||
| ) | const |
returns the edge connecting node1 and node2
The following functions provide access to the nodes and edges in the graph though, their use is strongly discouraged except for in writing unit tests to ensure that the graphs are properly implemented.
InteractionGraphBase::find_edge
| node1 | - [in] - index of the first node |
| node2 | - [in] - index of the second node |
Definition at line 1674 of file InteractionGraphBase.cc.
References focused_edge_, ig_nodes_, and core::pack::interaction_graph::EdgeBase::same_edge().
Referenced by core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::add_ProCorrection_values_for_edge(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::find_flexbb_edge(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::find_minimalist_flexbb_edge(), protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::find_otfflexbb_edge(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_dlazy_edge(), core::pack::interaction_graph::DensePDInteractionGraph::get_dpd_edge(), get_edge_exists(), get_edge_weight(), core::pack::interaction_graph::FASTERInteractionGraph::get_faster_edge(), core::pack::interaction_graph::FixedBBInteractionGraph::get_fixedbb_edge(), core::pack::interaction_graph::LazyInteractionGraph::get_lazy_edge(), core::pack::interaction_graph::PDInteractionGraph::get_pd_edge(), core::pack::interaction_graph::OnTheFlyInteractionGraph::note_long_range_interactions_exist_for_edge(), core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::note_long_range_interactions_exist_for_edge(), core::pack::interaction_graph::OnTheFlyInteractionGraph::note_short_range_interactions_exist_for_edge(), core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::note_short_range_interactions_exist_for_edge(), set_edge_weight(), core::pack::interaction_graph::OnTheFlyInteractionGraph::set_ProCorrection_values_for_edge(), core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::set_residues_adjacent_for_subunit_pair_for_edge(), and core::pack::interaction_graph::OnTheFlyInteractionGraph::set_sparse_aa_info_for_edge().
Definition at line 1682 of file InteractionGraphBase.cc.
References focused_edge_, ig_nodes_, and core::pack::interaction_graph::EdgeBase::same_edge().
| EdgeBase const & core::pack::interaction_graph::InteractionGraphBase::get_edge | ( | ) | const |
return a const reference to an edge pointed at by the list iterator
Definition at line 1341 of file InteractionGraphBase.cc.
References focused_edge_iterator_.
returns true if an edge between node1 and node2 exists
InteractionGraphBase::get_edge_exists
| node1 | - [in] - index of the one of the nodes node2 - [in] - index of the other node |
Definition at line 916 of file InteractionGraphBase.cc.
References find_edge().
Referenced by protocols::flexpack::rotamer_set::FlexbbRotamerSets::compute_one_body_energies_for_otf_ig().
|
inline |
Definition at line 458 of file InteractionGraphBase.hh.
References ig_edge_list_.
Referenced by protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DensePDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::FASTERInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::LazyInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::PDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_following_relaxation(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::PDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::prepare_for_FASTER(), prepare_for_simulated_annealing(), core::pack::interaction_graph::DoubleLazyInteractionGraph::prepare_for_simulated_annealing(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LazyInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::DoubleLazyInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::FASTERInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LazyInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::PDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleLazyInteractionGraph::update_internal_energy_totals(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::update_internal_energy_totals(), and core::pack::interaction_graph::DoubleLazyInteractionGraph::~DoubleLazyInteractionGraph().
|
inline |
Definition at line 464 of file InteractionGraphBase.hh.
References ig_edge_list_.
|
inline |
Definition at line 470 of file InteractionGraphBase.hh.
References ig_edge_list_.
Referenced by protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DensePDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::FASTERInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::LazyInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::PDInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_edge_memory_usage(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_following_relaxation(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::PDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::prepare_for_FASTER(), prepare_for_simulated_annealing(), core::pack::interaction_graph::DoubleLazyInteractionGraph::prepare_for_simulated_annealing(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LazyInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::DoubleLazyInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::FASTERInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LazyInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::PDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleLazyInteractionGraph::update_internal_energy_totals(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::update_internal_energy_totals(), and core::pack::interaction_graph::DoubleLazyInteractionGraph::~DoubleLazyInteractionGraph().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
| Real core::pack::interaction_graph::InteractionGraphBase::get_edge_weight | ( | int | node1, |
| int | node2 | ||
| ) | const |
returns 0 if edge is not part of the graph
Definition at line 1277 of file InteractionGraphBase.cc.
References core::pack::interaction_graph::EdgeBase::edge_weight(), and find_edge().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
Definition at line 445 of file InteractionGraphBase.hh.
References ig_nodes_, and num_ig_nodes_.
Referenced by any_vertex_state_unassigned(), drop_all_edges_for_node(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_dlazy_node(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_dpd_node(), core::pack::interaction_graph::DensePDInteractionGraph::get_dpd_node(), core::pack::interaction_graph::FASTERInteractionGraph::get_faster_node(), core::pack::interaction_graph::FixedBBInteractionGraph::get_fixedbb_node(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::get_flexbb_node(), core::pack::interaction_graph::LazyInteractionGraph::get_lazy_node(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_linmem_node(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_minimalistflexbb_node(), protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::get_otfflexbb_node(), core::pack::interaction_graph::PDInteractionGraph::get_pd_node(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_symmin_node(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_symmlinmem_node(), and prepare_for_simulated_annealing().
|
inlineprotected |
Definition at line 478 of file InteractionGraphBase.hh.
References node_state_offsets_, and num_ig_nodes_.
Referenced by protocols::flexpack::interaction_graph::FlexbbInteractionGraph::get_accessible_states().
|
inline |
Definition at line 452 of file InteractionGraphBase.hh.
References ig_edge_list_.
Referenced by core::pack::interaction_graph::DoubleLazyInteractionGraph::prepare_for_simulated_annealing(), protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::set_pose(), and protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::set_scorefxn().
|
inline |
Definition at line 321 of file InteractionGraphBase.hh.
References num_ig_nodes_.
Referenced by any_vertex_state_unassigned(), core::pack::interaction_graph::FASTERInteractionGraph::assign_BMEC(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::DensePDInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::FASTERInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::LazyInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::LinearMemoryInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::PDInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::DoubleLazyInteractionGraph::blanket_assign_state_0(), core::pack::interaction_graph::FASTERInteractionGraph::commit_relaxation(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::get_accessible_states(), core::pack::interaction_graph::FASTERInteractionGraph::get_current_network_state(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_following_relaxation(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::PDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_energy_sum_for_vertex_group(), get_num_nodes_v(), core::pack::interaction_graph::PDInteractionGraph::get_weighted_energy(), protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::initialize(), protocols::flexpack::interaction_graph::FlexbbInteractionGraph::initialize(), core::pack::interaction_graph::FASTERInteractionGraph::prepare_for_FASTER(), prepare_for_simulated_annealing(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::DensePDInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LazyInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::FASTERInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::LinearMemoryInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::PDInteractionGraph::print_current_state_assignment(), core::pack::interaction_graph::DoubleLazyInteractionGraph::print_current_state_assignment(), print_vertex_groups(), core::pack::interaction_graph::FASTERInteractionGraph::probabilistically_commit_relaxation(), core::pack::interaction_graph::FASTERInteractionGraph::relax_in_current_context(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::set_network_state(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::set_network_state(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::set_network_state(), core::pack::interaction_graph::DensePDInteractionGraph::set_network_state(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::set_network_state(), core::pack::interaction_graph::FASTERInteractionGraph::set_network_state(), core::pack::interaction_graph::LazyInteractionGraph::set_network_state(), core::pack::interaction_graph::LinearMemoryInteractionGraph::set_network_state(), core::pack::interaction_graph::DoubleLazyInteractionGraph::set_network_state(), protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::set_pose(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::set_recent_history_sizes(), core::pack::interaction_graph::LinearMemoryInteractionGraph::set_recent_history_sizes(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DensePDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::FASTERInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LazyInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::LinearMemoryInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::PDInteractionGraph::update_internal_energy_totals(), core::pack::interaction_graph::DoubleLazyInteractionGraph::update_internal_energy_totals(), and protocols::flexpack::interaction_graph::FlexbbInteractionGraph::update_internal_energy_totals().
|
inlinevirtual |
Definition at line 315 of file InteractionGraphBase.hh.
References get_num_nodes().
| int core::pack::interaction_graph::InteractionGraphBase::get_num_states_for_node | ( | int | node_index) | const |
returns the number of states for a particular node
InteractionGraphBase::get_num_states_for_node
| node_index | - [in] - the index of the node in question |
Definition at line 844 of file InteractionGraphBase.cc.
References ig_nodes_.
|
inline |
Definition at line 330 of file InteractionGraphBase.hh.
References num_total_states_.
|
pure virtual |
Implemented in core::pack::interaction_graph::SymmOnTheFlyInteractionGraph, core::pack::interaction_graph::OnTheFlyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
inline |
Definition at line 399 of file InteractionGraphBase.hh.
References energy_sum_group_membership_, num_energy_sum_groups_, and num_ig_nodes_.
Referenced by protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmMinimalistInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleDensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DensePDInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LazyInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::FASTERInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::LinearMemoryInteractionGraph::get_energy_sum_for_vertex_group(), core::pack::interaction_graph::DoubleLazyInteractionGraph::get_energy_sum_for_vertex_group(), and core::pack::interaction_graph::PDInteractionGraph::get_energy_sum_for_vertex_group().
|
virtual |
Definition at line 1298 of file InteractionGraphBase.cc.
References count_dynamic_memory(), count_static_memory(), ig_edge_list_, ig_nodes_, and num_ig_nodes_.
| void core::pack::interaction_graph::InteractionGraphBase::increment_edge_list_iterator | ( | ) | const |
increment the (single) edge list iterator to the next element
Definition at line 1328 of file InteractionGraphBase.cc.
References focused_edge_iterator_, and focused_edge_iterator_end_.
|
pure virtual |
Implemented in protocols::flexpack::interaction_graph::FlexbbInteractionGraph, core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::SymmOnTheFlyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::OnTheFlyInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
inlineprotected |
Definition at line 485 of file InteractionGraphBase.hh.
References core::pack::interaction_graph::EdgeBase::get_owner().
Referenced by protocols::flexpack::interaction_graph::FlexbbInteractionGraph::cast_flexbb_edge(), protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph::cast_minimalist_flexbb_edge(), and protocols::flexpack::interaction_graph::OTFFlexbbInteractionGraph::cast_otfflexbb_edge().
| void core::pack::interaction_graph::InteractionGraphBase::note_vertex_reached | ( | int | node_index) |
marks a vertex as belonging to the connected component currently being traversed in the depth first traversal.
InteractionGraphBase::note_vertex_reached
| node_index | - [in] - the index of the node invoking this method. |
Definition at line 1489 of file InteractionGraphBase.cc.
References component_membership_, and num_energy_sum_groups_.
Referenced by core::pack::interaction_graph::NodeBase::depth_first_connected_component_counting().
|
private |
| void core::pack::interaction_graph::InteractionGraphBase::output_connectivity | ( | std::ostream & | os) | const |
writes out a list of all the edges in the graph
InteractionGraphBase::output_connectivity
| os | - [in] - the output stream to write to |
Definition at line 1024 of file InteractionGraphBase.cc.
References ig_edge_list_.
| void core::pack::interaction_graph::InteractionGraphBase::output_dimacs | ( | std::ostream & | os) | const |
writes out a connectivity description of the graph in the famous dimacs format. (where the first column "DIMACS:" should be sed'ed out)
InteractionGraphBase::output_dimacs
| os | - [in] - the output stream to write to |
Definition at line 1059 of file InteractionGraphBase.cc.
References ig_edge_list_, and num_ig_nodes_.
|
virtual |
iterate across edges and nodes and allow them to prepare for simulated annealing
Edges may decide to delete themselves during this subroutine; therefore edges are prepared first. Afterwards, the nodes must update their edge vector representation.
Reimplemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, and core::pack::interaction_graph::SymmMinimalistInteractionGraph.
Definition at line 954 of file InteractionGraphBase.cc.
References get_edge_list_begin(), get_edge_list_end(), get_node(), get_num_nodes(), and core::pack::interaction_graph::NodeBase::prepare_for_simulated_annealing().
Referenced by core::pack::interaction_graph::SymmMinimalistInteractionGraph::prepare_for_simulated_annealing(), core::pack::interaction_graph::SymmLinearMemoryInteractionGraph::prepare_for_simulated_annealing(), core::pack::interaction_graph::LinearMemoryInteractionGraph::prepare_for_simulated_annealing(), and core::pack::interaction_graph::DoubleLazyInteractionGraph::prepare_for_simulated_annealing().
|
inlinevirtual |
Definition at line 337 of file InteractionGraphBase.hh.
Referenced by print_vertices().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
| void core::pack::interaction_graph::InteractionGraphBase::print_vertex_groups | ( | ) |
Definition at line 1570 of file InteractionGraphBase.cc.
References energy_sum_group_membership_, get_num_nodes(), and num_energy_sum_groups_.
| void core::pack::interaction_graph::InteractionGraphBase::print_vertices | ( | ) | const |
calls print() on each of the nodes in the graph
InteractionGraphBase::print_vertices
| @par | Global Read: |
Definition at line 995 of file InteractionGraphBase.cc.
References ig_nodes_, num_ig_nodes_, and print().
| void core::pack::interaction_graph::InteractionGraphBase::reset_edge_list_iterator_for_node | ( | int | node_index) | const |
set the Graph's (single) edge list iterator to the beginning of the edge list for a particular node
Methods for iterating across edges of the interaction graph. Protected access since the raw edge lists contain non-const pointers.
Definition at line 1321 of file InteractionGraphBase.cc.
References focused_edge_iterator_, focused_edge_iterator_end_, and ig_nodes_.
| void core::pack::interaction_graph::InteractionGraphBase::set_edge_weight | ( | int | node1, |
| int | node2, | ||
| Real | edge_weight | ||
| ) |
invokes polymorphic method of EdgeBase class; no-op if edge is not part of the graph.
Definition at line 1259 of file InteractionGraphBase.cc.
References find_edge(), and core::pack::interaction_graph::EdgeBase::set_edge_weight().
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
|
pure virtual |
Implemented in core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
| void core::pack::interaction_graph::InteractionGraphBase::set_num_states_for_node | ( | int | node_index, |
| int | num_states | ||
| ) |
sets the number of states for a node of a particular index NEW REQUIREMENT: Nodes must have their num-states set in ascending order by node index; that is, node 1 must go first, node 2 next, and so on.
InteractionGraphBase::set_num_states_for_node
| node_index | - [in] - the index of the node |
| num_states | - [in] - the number of states for that node |
Definition at line 806 of file InteractionGraphBase.cc.
Referenced by core::pack::interaction_graph::DoubleDensePDInteractionGraph::initialize(), core::pack::interaction_graph::DensePDInteractionGraph::initialize(), core::pack::interaction_graph::OnTheFlyInteractionGraph::initialize(), core::pack::interaction_graph::FASTERInteractionGraph::initialize(), core::pack::interaction_graph::PDInteractionGraph::initialize(), core::pack::interaction_graph::SymmOnTheFlyInteractionGraph::initialize(), and protocols::flexpack::interaction_graph::FlexbbInteractionGraph::initialize().
| void core::pack::interaction_graph::InteractionGraphBase::set_number_of_energy_sum_vertex_groups | ( | int | num_groups) |
a user may define subsets of the vertex set for which they would like to know the internal energy sum. For instance in a graph with 6 vertices, {a,b,c,d,e,f} a user may be interested in the sum of the one- and two-body energies for vertices {a,b,c}. The graph will return sum of the one body energies for vertices a b and c and also any two-body energies for the edges in the subgraph induced by a,b, and c. (In this case, edges {a,b}, {a,c} and {b,c} if these edges are part of the graph. The edge {a,d} will not be counted if it is part of the graph.)
InteractionGraphBase::set_number_of_energy_sum_vertex_groups
First you must declare how many groups you are interested in. Do that with this method. Second you must declare which node is a member of each group. Only tell the graph which node is a member, do not tell the graph if a node is not a member. Third, when you want to know the energy sum for the group in the graph's current state assignment, call get_energy_sum_for_vertex_group( group_id)
| num_groups | - [in] - the number of groups; set this at most once. |
Definition at line 1403 of file InteractionGraphBase.cc.
References energy_sum_group_membership_, num_energy_sum_groups_, and num_ig_nodes_.
|
pure virtual |
Implemented in core::pack::interaction_graph::DoubleLazyInteractionGraph, core::pack::interaction_graph::PDInteractionGraph, core::pack::interaction_graph::LinearMemoryInteractionGraph, core::pack::interaction_graph::LazyInteractionGraph, core::pack::interaction_graph::FASTERInteractionGraph, core::pack::interaction_graph::SymmLinearMemoryInteractionGraph, core::pack::interaction_graph::DensePDInteractionGraph, core::pack::interaction_graph::SymmMinimalistInteractionGraph, core::pack::interaction_graph::DoubleDensePDInteractionGraph, and protocols::flexpack::interaction_graph::MinimalistFlexbbInteractionGraph.
| void core::pack::interaction_graph::InteractionGraphBase::set_vertex_member_of_group | ( | int | vertex, |
| int | group | ||
| ) |
a user may define subsets of the vertex set for which they would like to know the internal energy sum. For instance in a graph with 6 vertices, {a,b,c,d,e,f} a user may be interested in the sum of the one- and two-body energies for vertices {a,b,c}. The graph will return sum of the one body energies for vertices a b and c and also any two-body energies for the edges in the subgraph induced by a,b, and c. (In this case, edges {a,b}, {a,c} and {b,c} if these edges are part of the graph. The edge {a,d} will not be counted if it is part of the graph.)
InteractionGraphBase::set_vertex_member_of_group
| vertex | - [in] - the index of the vertex you wish to include in the group group - [in] - the group index you wish to add the vertex to. |
Definition at line 1564 of file InteractionGraphBase.cc.
References energy_sum_group_membership_.
| void core::pack::interaction_graph::InteractionGraphBase::update_one_body_energies | ( | ObjexxFCL::FArray1< core::PackerEnergy > & | old_energy1b, |
| ObjexxFCL::FArray1< core::PackerEnergy > & | new_energy1b | ||
| ) |
decrements the one body energies by the values held in old_energy1b, increments the one body energies by the values held in new_energy1b, and copies new_energy1b into old_energy1b.
InteractionGraphBase::add_to_one_body_energies
| old_energy1b | - [in/out] - the one body energies representing interactions with portions of the background that are no longer valid new_energy1b - [in] - the one body energies representing interactions with the background after the background has changed |
Definition at line 1193 of file InteractionGraphBase.cc.
used by class NodeBase during the depth-first traversal to determine the number of connected components in the graph. returns true if the dft has already reached the node.
InteractionGraphBase:: vertex_already_reached
| node_index | - [in] - the index of the node calling the method. |
Definition at line 1525 of file InteractionGraphBase.cc.
References component_membership_.
Referenced by count_connected_components_and_initialize_vertex_groups(), and core::pack::interaction_graph::NodeBase::depth_first_connected_component_counting().
| void core::pack::interaction_graph::InteractionGraphBase::zero_one_body_energies_for_node | ( | int | node) |
Definition at line 1204 of file InteractionGraphBase.cc.
References ig_nodes_.
|
friend |
Definition at line 423 of file InteractionGraphBase.hh.
|
friend |
Definition at line 422 of file InteractionGraphBase.hh.
|
private |
Definition at line 502 of file InteractionGraphBase.hh.
Referenced by count_connected_components_and_initialize_vertex_groups(), note_vertex_reached(), and vertex_already_reached().
|
private |
Definition at line 501 of file InteractionGraphBase.hh.
Referenced by count_connected_components_and_initialize_vertex_groups(), get_vertex_member_of_energy_sum_group(), print_vertex_groups(), set_number_of_energy_sum_vertex_groups(), and set_vertex_member_of_group().
|
mutableprivate |
Definition at line 496 of file InteractionGraphBase.hh.
Referenced by add_edge(), drop_edge(), and find_edge().
|
mutableprivate |
Definition at line 497 of file InteractionGraphBase.hh.
Referenced by edge_list_iterator_at_end(), get_edge(), increment_edge_list_iterator(), and reset_edge_list_iterator_for_node().
|
mutableprivate |
Definition at line 498 of file InteractionGraphBase.hh.
Referenced by edge_list_iterator_at_end(), increment_edge_list_iterator(), and reset_edge_list_iterator_for_node().
|
private |
Definition at line 492 of file InteractionGraphBase.hh.
Referenced by add_edge(), count_dynamic_memory(), drop_edge(), get_edge_list_begin(), get_edge_list_end(), get_num_edges(), getTotalMemoryUsage(), output_connectivity(), output_dimacs(), and ~InteractionGraphBase().
|
private |
Definition at line 491 of file InteractionGraphBase.hh.
Referenced by count_connected_components_and_initialize_vertex_groups(), core::pack::interaction_graph::EdgeBase::EdgeBase(), find_edge(), get_node(), get_num_states_for_node(), getTotalMemoryUsage(), print_vertices(), reset_edge_list_iterator_for_node(), zero_one_body_energies_for_node(), and ~InteractionGraphBase().
|
private |
Definition at line 494 of file InteractionGraphBase.hh.
Referenced by get_node_state_offset().
|
private |
Definition at line 500 of file InteractionGraphBase.hh.
Referenced by count_connected_components_and_initialize_vertex_groups(), get_vertex_member_of_energy_sum_group(), note_vertex_reached(), print_vertex_groups(), and set_number_of_energy_sum_vertex_groups().
|
private |
Definition at line 490 of file InteractionGraphBase.hh.
Referenced by count_connected_components_and_initialize_vertex_groups(), count_dynamic_memory(), get_node(), get_node_state_offset(), get_num_nodes(), get_vertex_member_of_energy_sum_group(), getTotalMemoryUsage(), output_dimacs(), print_vertices(), set_number_of_energy_sum_vertex_groups(), and ~InteractionGraphBase().
|
private |
Definition at line 495 of file InteractionGraphBase.hh.
Referenced by get_num_total_states().
1.8.4