aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/dggf.cc
blob: c41e6a61a367f16ebd677f32d2f02374efad5015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/***************************************************************************
                          dggf.cc  -  Dimension Generic Grid Function
                          grid function without type information
                             -------------------
    begin                : Sun Jun 11 2000
    copyright            : (C) 2000 by Erik Schnetter
    email                : schnetter@astro.psu.edu

    $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/Attic/dggf.cc,v 1.4 2002/09/25 15:49:15 schnetter Exp $

 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include <assert.h>
#include <stdlib.h>

#include "defs.hh"
#include "th.hh"

#include "dggf.hh"

using namespace std;



// Constructors
dimgeneric_gf::dimgeneric_gf (const string name, th& t,
			      const int tmin, const int tmax,
			      const int prolongation_order_time)
  : name(name), t(t),
    tmin(tmin), tmax(tmax), prolongation_order_time(prolongation_order_time)
{
  assert (tmin<=tmax+1);
}

// Destructors
dimgeneric_gf::~dimgeneric_gf ()
{
}

// Comparison
bool dimgeneric_gf::operator== (const dimgeneric_gf& f) const {
  return this == &f;
}