Skip to content

Commit

Permalink
C++: orthographic typo
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Müller <[email protected]>
  • Loading branch information
marcusmueller committed Apr 22, 2023
1 parent d285e80 commit 9fe0516
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simulateFER.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ int main(int argc, char *argv[]) {
bool trained = true;
double ep0 = 0.1;
stabilizerCodesType codeType = stabilizerCodesType::GeneralizedBicycle;
fileReader matrix_suppiler(n, k, m, codeType, trained);
matrix_suppiler.check_symplectic();
fileReader matrix_supplier(n, k, m, codeType, trained);
matrix_supplier.check_symplectic();

constexpr int default_max_frame_errors = 300;
constexpr int default_max_decoded_words = 45000000;
Expand Down Expand Up @@ -60,7 +60,7 @@ int main(int argc, char *argv[]) {
#pragma omp parallel
{
while (failure <= max_frame_errors && total_decoding <= max_decoded_words) {
stabilizerCodes code(n, k, m, codeType, matrix_suppiler, trained);
stabilizerCodes code(n, k, m, codeType, matrix_supplier, trained);
code.add_error_given_epsilon(epsilon);
std::vector<bool> success;
success = code.decode(decIterNum, ep0);
Expand Down

0 comments on commit 9fe0516

Please sign in to comment.