From f63132fa3c072974ad22a0295d9858ec05c7d313 Mon Sep 17 00:00:00 2001 From: milia Date: Thu, 26 Nov 2020 19:03:46 +0100 Subject: [PATCH] added example of run, refs #3 --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0773d41..95bb097 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,13 @@ In this project we successfully construct a python implementation of the two-par There are two implementations. The first attempt was a naive approach, using vanilla python3 for the construction of the operator `A(N,s)`. The second attempt, which is much better and faster is using cython for speeding up the construction process. ## How to use the python script -To be added soon. +Run: `python3 create_matrix.py` + +You'll get instructions then. + +An example of correct run: + +`python3 create_matrix.py 100 0 1` ## How to use the cython files