diff options
author | Jim Plank <plank@cs.utk.edu> | 2014-01-29 15:56:05 -0500 |
---|---|---|
committer | Jim Plank <plank@cs.utk.edu> | 2014-01-29 15:56:05 -0500 |
commit | 8907dee8f17b652f6ea856d4239598da60f15538 (patch) | |
tree | 964a81ae0cc451602df85ff9c1aaafb867e4edeb /Examples | |
parent | 08d7edc092594fe28ae70699762a8915f6d79685 (diff) | |
download | jerasure-8907dee8f17b652f6ea856d4239598da60f15538.tar.gz |
Added the user's manual.
Diffstat (limited to 'Examples')
-rw-r--r-- | Examples/cauchy_04.c | 2 | ||||
-rw-r--r-- | Examples/reed_sol_test_gf.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Examples/cauchy_04.c b/Examples/cauchy_04.c index 1db9df3..6525de3 100644 --- a/Examples/cauchy_04.c +++ b/Examples/cauchy_04.c @@ -152,7 +152,7 @@ int main(int argc, char **argv) /* Print out the matrix and the bitmatrix */ printf("<hr>\n"); - printf("Here is the matrix, which was created with <b>cauchy_xy_coding_matrix()</b>.\n"); + printf("Here is the matrix, which was created with <b>cauchy_good_general_coding_matrix()</b>.\n"); printf("<pre>\n"); jerasure_print_matrix(matrix, m, k, w); diff --git a/Examples/reed_sol_test_gf.c b/Examples/reed_sol_test_gf.c index 611f813..95ea54e 100644 --- a/Examples/reed_sol_test_gf.c +++ b/Examples/reed_sol_test_gf.c @@ -70,7 +70,7 @@ static void free16(void *ptr) { usage(char *s) { - fprintf(stderr, "usage: reed_sol_test_gf k m w seed [additional GF args]- Tests Reed-Solomon in GF(2^w).\n"); + fprintf(stderr, "usage: reed_sol_test_gf k m w seed (additional GF args) - Tests Reed-Solomon in GF(2^w).\n"); fprintf(stderr, " \n"); fprintf(stderr, " w must be 8, 16 or 32. k+m must be <= 2^w.\n"); fprintf(stderr, " See the README for information on the additional GF args.\n"); @@ -107,7 +107,7 @@ int main(int argc, char **argv) gf_t *gf = NULL; uint32_t seed; - if (argc < 6) usage(NULL); + if (argc < 6) usage("Not enough command line arguments"); if (sscanf(argv[1], "%d", &k) == 0 || k <= 0) usage("Bad k"); if (sscanf(argv[2], "%d", &m) == 0 || m <= 0) usage("Bad m"); if (sscanf(argv[3], "%d", &w) == 0 || (w != 8 && w != 16 && w != 32)) usage("Bad w"); |