ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Struct template conj_mult

alps::conj_mult — a function object for conj(x)*y

Synopsis

// In header: <alps/functional.h>

template<typename T> 
struct conj_mult {

  // public member functions
  T operator()(const T &, const T &) const;
};

Description

the version for real data types is just the same as std::multiplies

conj_mult public member functions

  1. T operator()(const T & a, const T & b) const;
    returns x*y
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext