Skip to content

Commit b9824cd

Browse files
authored
Merge pull request #40 from jakewilliami/dev
Dev
2 parents 73686b0 + 67a9861 commit b9824cd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ language: julia
44
os:
55
- linux
66
- osx
7+
- windows
78

89
julia:
910
- 1.5

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Code Style: Blue][code-style-img]][code-style-url] [![Build Status](https://travis-ci.com/jakewilliami/CodingTheory.jl.svg?branch=master)](https://travis-ci.com/jakewilliami/CodingTheory.jl) ![Project Status](https://img.shields.io/badge/status-maturing-green)
66

77
## Description
8-
This is a minimal package for a pure Julia implementation of tools used in [Coding Theory](https://en.wikipedia.org/wiki/Coding_theory). The is the science of accurately transmitting information through a noisy channel.
8+
This is a minimal package for a pure Julia implementation of tools used in [Coding Theory](https://en.wikipedia.org/wiki/Coding_theory). This is the science of accurately transmitting information through a noisy channel.
99

1010
## Terminology
1111
We assume that Alice and Bob communicate by sending sequences of symbols from a finite set *&Sigma;*, which we call the **alphabet**. We always use *q* to stand for the size of the set of symbols, |*&Sigma;*|. A **word** is a sequence of symbols from the alphabet *&Sigma;*. If *w<sub>1</sub>w<sub>2</sub>...w<sub>n</sub>* is such a word, then *n* is its **length**. We use *&Sigma;<sup>n</sup>* to denote the set of words with length *n* using symbols in *&Sigma;*. In general, the number of words in *&Sigma;<sup>n</sup>* is

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ using Polynomials
8585
@test isgolayperfect(11, 6, 5, 4) == false
8686

8787
@test length(get_codewords(5, 5, 3)) ∈ [74:74...]
88-
@test length(get_codewords(4, 7, 3; m = 1)) ∈ [256:303...]
88+
@test length(get_codewords(4, 7, 3; m = 1)) ∈ [256:308...]
8989
@test length(get_codewords_greedy(5, 5, 3)) == 74
9090
randq, randn = rand(1:8, 2)
9191
@test length(get_all_words(randq, randn)) == big(randq)^randn

0 commit comments

Comments
 (0)