ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Struct template nonzero_edge_weight

alps::nonzero_edge_weight

Synopsis

// In header: <alps/model/sign.h>

template<typename EdgeWeightMap> 
struct nonzero_edge_weight {
  // construct/copy/destruct
  nonzero_edge_weight();
  nonzero_edge_weight(EdgeWeightMap);

  // public member functions
  template<typename Edge> bool operator()(const Edge &) const;

  // public data members
  EdgeWeightMap m_weight;
};

Description

nonzero_edge_weight public construct/copy/destruct

  1. nonzero_edge_weight();
  2. nonzero_edge_weight(EdgeWeightMap weight);

nonzero_edge_weight public member functions

  1. template<typename Edge> bool operator()(const Edge & e) const;
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext