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
|