SyFi  0.3
SyFi::ExStats Class Reference

#include <ginac_tools.h>

List of all members.

Public Member Functions

 ExStats ()
const ExStatsoperator+= (const ExStats &rhs)

Public Attributes

int muls
int adds
int pows
int functions
int flops

Detailed Description

Definition at line 115 of file ginac_tools.h.


Constructor & Destructor Documentation

SyFi::ExStats::ExStats ( ) [inline]

Definition at line 118 of file ginac_tools.h.

: muls(0), adds(0), pows(0), functions(0), flops(0) {}

Member Function Documentation

const ExStats& SyFi::ExStats::operator+= ( const ExStats rhs) [inline]

Definition at line 120 of file ginac_tools.h.

References adds, flops, functions, muls, and pows.

                        {
                                muls      += rhs.muls;
                                adds      += rhs.adds;
                                pows      += rhs.pows;
                                functions += rhs.functions;
                                flops     += rhs.flops;
                                return *this;
                        }

Member Data Documentation

Definition at line 131 of file ginac_tools.h.

Referenced by main(), operator+=(), and print().

Definition at line 137 of file ginac_tools.h.

Referenced by main(), operator+=(), and print().

Definition at line 134 of file ginac_tools.h.

Referenced by main(), operator+=(), and print().

Definition at line 130 of file ginac_tools.h.

Referenced by main(), operator+=(), and print().

Definition at line 133 of file ginac_tools.h.

Referenced by main(), operator+=(), and print().


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator