10#ifndef TEUCHOS_DEPENDENCYSHEET_HPP_ 
   11#define TEUCHOS_DEPENDENCYSHEET_HPP_ 
   17#include "Teuchos_Dependency.hpp" 
  111    return (dependenciesMap_.find(dependee) != dependenciesMap_.end()
 
  112      && dependenciesMap_.find(dependee)->second.size() > 0);
 
 
  137    return dependencies_.empty();
 
 
  150    return dependencies_.begin();
 
 
  159    return dependencies_.end();
 
 
  166    return dependencies_.begin();
 
 
  172  inline DepSet::const_iterator 
depEnd()
 const{
 
  173    return dependencies_.end();
 
 
  183  inline DepSet::size_type 
size(){
 
  184    return dependencies_.size();
 
 
  195  void printDeps(std::ostream& out) 
const;
 
  218  DepMap dependenciesMap_;
 
  223  DepSet dependencies_;
 
 
A Dependency sheet keeps track of dependencies between various ParameterEntries.
 
DepSet::const_iterator depEnd() const
Returns a const iterator to the end of all of the dependees in the sheet.
 
bool hasDependents(RCP< const ParameterEntry > dependee) const
Determines whether or not a parameter is depended upon by any another parameters or parameter lists.
 
void setName(const std::string newName)
sets the name of the dependency sheet
 
DepSet::iterator depBegin()
Returns an iterator to the beginning of all the dependees in the sheet.
 
DepSet::const_iterator depBegin() const
Returns a const iterator to the beginning of all the dependees in the sheet.
 
bool empty() const
Determines whether or not this dependency sheet has any dependencies.
 
std::set< RCP< Dependency >, RCPComp > DepSet
Convience typedef representing a set of dependencies.
 
const std::string & getName() const
Gets the name of the dependency sheet.
 
DepSet::iterator depEnd()
 
DepSet::size_type size()
Returns the number of Dependencies in this DependencySheet.
 
map< RCP< const ParameterEntry >, DepSet, RCPConstComp > DepMap
Convience typedef. Maps dependee parameter entries to a set of their corresponding dependencies.
 
static const std::string & getNameAttributeName()
When serializing to XML, this string should be used as the name of the name attribute.
 
Smart reference counting pointer class for automatic garbage collection.
 
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...
 
Struct for comparing two RCPs. Simply compares the raw pointers contained within the RCPs.
 
Struct for comparing two RCPs. Simply compares the raw pointers contained within the RCPs.