MAJVER=1
MINVER=0
-PATCHLEVEL=23
+PATCHLEVEL=24
PACKAGENAME=flower
#PROFILEFLAG=-pg
Vector::operator String() const
{
String s("vector [");
-#ifndef NDEBUG
+#ifndef NPRINT
for (int i=0; i < dim(); i++) {
s += String(dat[i], "%6f") + ' ';
}
#include "vector.hh"
-
+Vector::Vector(Array<Real> d)
+ : dat(d)
+{
+
+}
Vector::Vector(const Vector&n)
- :dat(n.dat)
+ : dat(n.dat)
{
}
void OK() const { dat.OK();}
int dim() const { return dat.size(); }
Vector() { }
+ Vector(Array<Real> d );
Vector(const Vector&n);
Vector(int n) {
dat.set_size(n);