aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-01-14 21:32:09 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2025-01-14 21:32:09 +0100
commit38efc7d2df030d37e3f20efbce71fadad1294cef (patch)
treebbe8a7bbb6acbeb2b7ed54c189d1e719a7459427 /README.md
parent8ca27427af98bd3a82e8c5f4a199513295747930 (diff)
downloadzmodn-38efc7d2df030d37e3f20efbce71fadad1294cef.tar.gz
zmodn-38efc7d2df030d37e3f20efbce71fadad1294cef.zip
Added BigInt
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 900a296..043b626 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,17 @@
1# ZmodN - A simple library for modular arithmetic 1# ZmodN - A simple library for modular arithmetic
2 2
3## ZmodN
4
3Usage: 5Usage:
4 6
51. `#include "zmodn.h"` in your project 71. `#include "zmodn.h"` in your project
62. enjoy 82. enjoy
7 9
8# Development 10## BigInt
11
12This repo contains also a class for big integer. Performance are not great,
13but you have a look at it for educational purposes.
14
15## Development
9 16
10Run `chmod +x test` and then `./test` to run tests. 17Run `chmod +x test` and then `./test` to run tests.