Ignore:
Timestamp:
Apr 6, 2007, 6:06:24 PM (18 years ago)
Author:
dkearney
Message:

Updates to Rappture::Utils::progress for all languages
removed the dependancy on Rappture.Units from within number.py, it should only depend on Rappture which will include Rappture.Units
added Rappture.Units as a module to load when people import Rappture in python.
added -V pbs variable to queue.py to include qsub environment variables in the submitted job.
updated setup.py.in to install Rappture.Utils
added progress bar to all app-fermi examples showing how to use the Rappture::Utils::progress function in all languages.
added destructor definitions to Node classes in src2/core

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src2/core/RpNode.h

    r657 r665  
    3232    virtual int dimensionality() const = 0;
    3333
    34     virtual ~Node();
     34    virtual ~Node() {}
    3535
    3636private:
     
    4747    virtual double x(double newval) { _x = newval; return _x; }
    4848
    49     virtual ~Node1D();
     49    virtual ~Node1D() {}
    5050
    5151private:
     
    6565    virtual double y(double newval) { _y = newval; return _y; }
    6666
    67     virtual ~Node2D();
     67    virtual ~Node2D() {}
    6868
    6969private:
     
    8686    virtual double z(double newval) { _z = newval; return _z; }
    8787
    88     virtual ~Node3D();
     88    virtual ~Node3D() {}
    8989
    9090private:
Note: See TracChangeset for help on using the changeset viewer.