Skip to content

Commit c2590c5

Browse files
authored
Update README.md
1 parent eaa4fd4 commit c2590c5

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,9 @@ Dependencies: Need to install Julia and Oscar [ToDo: Add installation guides]. W
1818

1919
Here is an example for how to use the code. Execute the following lines in Julia REPL:
2020
```
21-
include("ZetaFunction.jl")
22-
using Oscar
23-
n = 2
24-
d = 3
21+
include("DeRham.jl")
2522
p = 7
26-
R = GF(p,1)
27-
PR, Vars = polynomial_ring(R, ["x$i" for i in 0:n])
28-
x,y,z = Vars
23+
R, (x,y,z) = polynomial_ring(GF(p), ["x","y","z"])
2924
f = y^2*z - x^3 - x*z^2 - z^3
30-
ZetaFunction.computeAll(n,d,f,7,p,R,PR,Vars)
25+
DeRham.zeta_function(f,fastevaluation=true,algorithm=:naive)
3126
```

0 commit comments

Comments
 (0)