File: SimplicialComplex.hh

package info (click to toggle)
topcom 1.1.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,784 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (26 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (2)
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
////////////////////////////////////////////////////////////////////////////////
// 
// SimplicialComplex.hh 
//
//    produced: 21/08/97 jr
// last change: 24/01/98 jr
//
////////////////////////////////////////////////////////////////////////////////
#ifndef SIMPLICIALCOMPLEX_HH
#define SIMPLICIALCOMPLEX_HH

#include "FastSimplicialComplex.hh"
#include "SparseSimplicialComplex.hh"

namespace topcom {

#ifdef SPARSE
typedef SparseSimplicialComplex                     SimplicialComplex;
#else
typedef FastSimplicialComplex                       SimplicialComplex;
#endif

};

#endif
// eof SimplicialComplex.hh