File: ComputeSubsets.cc

package info (click to toggle)
topcom 1.2.0~beta%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 148,596 kB
  • sloc: cpp: 40,956; sh: 4,663; makefile: 679; ansic: 55
file content (37 lines) | stat: -rw-r--r-- 896 bytes parent folder | download
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
////////////////////////////////////////////////////////////////////////////////
// 
// ComputeSubsets.cc 
//
//    produced: 16/07/19 jr
//
////////////////////////////////////////////////////////////////////////////////
// #include <iostream>

// #include "Global.hh"
// #include "CommandlineOptions.hh"
// #include "LabelSet.hh"
// #include "Circuits.hh"
// #include "Permutation.hh"
// #include "Symmetry.hh"
// #include "SymmetricSubsetGraphMaster.hh"

// #include "ComputeSubsets.hh"

// #ifdef TOPCOM_CONTAINERS
// #include "PlainHashSet.hh"
// #include "HashSet.hh"
// namespace topcom {
//   typedef PlainHashSet<dependent_set_type> dependent_sets_type;
// };
// #else
// #include <unordered_set>
// namespace topcom {
//   typedef std::unordered_set<dependent_set_type, Hash<dependent_set_type> > dependent_sets_type;
// };
// #endif

namespace topcom {

}; // namespace topcom

// eof