From 9b1c6cf573807223a2255c3917c702e6958af1a0 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Tue, 9 Jun 2020 17:31:31 +0200 Subject: [PATCH] point out soft decoding better --- README.md | 2 +- short_bch_code_decoder.hh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9eebd75..222fb4c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Encoder for short [BCH codes](https://en.wikipedia.org/wiki/BCH_code) ### [short_bch_code_decoder.hh](short_bch_code_decoder.hh) -[Syndrome decoder](https://en.wikipedia.org/wiki/Decoding_methods#Syndrome_decoding) for short [BCH codes](https://en.wikipedia.org/wiki/BCH_code) +[Syndrome decoding](https://en.wikipedia.org/wiki/Decoding_methods#Syndrome_decoding) based [Soft-decision decoder](https://en.wikipedia.org/wiki/Soft-decision_decoder) for short [BCH codes](https://en.wikipedia.org/wiki/BCH_code) ### [simplex_encoder.hh](simplex_encoder.hh) diff --git a/short_bch_code_decoder.hh b/short_bch_code_decoder.hh index 2177c0b..ae3ab69 100644 --- a/short_bch_code_decoder.hh +++ b/short_bch_code_decoder.hh @@ -1,5 +1,5 @@ /* -Decoder for short BCH codes +Soft decoder for short BCH codes Copyright 2020 Ahmet Inan */