comparison base/BaseTypes.h @ 1626:895186c43fce single-point

Experiment with storing vectors of event ids in seam map for compactness
author Chris Cannam
date Mon, 11 Mar 2019 13:44:35 +0000
parents 5360f7aba189
children
comparison
equal deleted inserted replaced
1625:7dbb2a7b592e 1626:895186c43fce
53 typedef std::vector<float, breakfastquay::StlAllocator<float>> floatvec_t; 53 typedef std::vector<float, breakfastquay::StlAllocator<float>> floatvec_t;
54 54
55 typedef std::vector<std::complex<float>, 55 typedef std::vector<std::complex<float>,
56 breakfastquay::StlAllocator<std::complex<float>>> complexvec_t; 56 breakfastquay::StlAllocator<std::complex<float>>> complexvec_t;
57 57
58 typedef uint64_t sv_id_t;
59
60 enum {
61 ID_NOTHING = 0
62 };
63
58 #endif 64 #endif
59 65