struct Gambit::triplet

[No description available] More…

Public Functions

Name
triplet()
Default constructor.
triplet(TYPE centralval)
One-value constructor.
triplet(TYPE centralval, TYPE upperval, TYPE lowerval)
Three-value constructor.
triplet(const triplet< TYPE > & in)
Copy constructor.
triplet< TYPE > &operator=(const triplet< TYPE > & in)
Copy assignment operator.

Public Attributes

Name
TYPEcentral
TYPEupper
TYPElower

Detailed Description

template <typename TYPE >
struct Gambit::triplet;

Public Functions Documentation

function triplet

inline triplet()

Default constructor.

function triplet

inline triplet(
    TYPE centralval
)

One-value constructor.

function triplet

inline triplet(
    TYPE centralval,
    TYPE upperval,
    TYPE lowerval
)

Three-value constructor.

function triplet

inline triplet(
    const triplet< TYPE > & in
)

Copy constructor.

function operator=

inline triplet< TYPE > & operator=(
    const triplet< TYPE > & in
)

Copy assignment operator.

Public Attributes Documentation

variable central

TYPE central;

variable upper

TYPE upper;

variable lower

TYPE lower;

Updated on 2023-06-26 at 21:36:51 +0000