Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySarnoff committed Jul 29, 2018
1 parent 3fcdee2 commit 906e600
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,6 @@ While the bounds of an `ArbReal` or `ArbComplex` are available, the default is t

## Installation


### currently

Do this (don't be concerned with the messages). Copy and paste into the REPL:
```julia
julia> using Pkg
julia> Pkg.rm("Nemo"); Pkg.rm("Nemo"); # twice
julia> Pkg.clone("https://github.com/wbhart/Nemo.jl.git");
julia> Pkg.build("Nemo");
julia> Pkg.add("ArbNumerics");
julia> using ArbNumerics
julia> exit()
```
There will commence much activity (getting source codes over the internet and compiling them takes time). If you are doing this before Nemo.jl has a v0.7 release, you may see warnings. _That is OK!_.


#### to be implemented

```julia
pkg> rm ArbNumerics
pkg> add ArbNumerics
Expand All @@ -53,6 +35,8 @@ After the installation is done. `using ArbNumerics` will make this package avail

Reading the sections that follow gives you a good platform from which to develop.

- consider adding `Readables.jl` and `using ArbNumerics, Readables`

## Constructors

Initially, the default precision is set to 106 bits. All ArbReal types use the same default precision. You can change this to e.g. 750 bits: `setprecision(ArbFloat, 750)` or `setprecision(ArbReal, 750)`. While you may use whatever precision you like, the underlying C library is optimized for precisions <= 4_000 bits (roughly).
Expand Down

0 comments on commit 906e600

Please sign in to comment.