MCPcopy Create free account
hub / github.com/aff3ct/aff3ct / Encoder_coset

Method Encoder_coset

src/Module/Encoder/Coset/Encoder_coset.cpp:10–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9template<typename B>
10Encoder_coset<B>::Encoder_coset(const int K, const int N, const int seed)
11 : Encoder<B>(K, N)
12 , rd_engine(seed)
13 , uniform_dist(0, 1)
14{
15 const std::string name = "Encoder_coset";
16 this->set_name(name);
17 for (auto& t : this->tasks)
18 t->set_replicability(true);
19}
20
21template<typename B>
22Encoder_coset<B>*

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected