Skip to content

Commit 90102c4

Browse files
committed
Ready for v1.0
1 parent 272000b commit 90102c4

File tree

4 files changed

+14
-22
lines changed

4 files changed

+14
-22
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ Tex_Development
55
src/Nuke_Me
66
Old_Stuff
77
IJulia_Problem
8+
Emergency

CITATION.bib

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ @book{ctk:fajulia
1515
publisher="SIAM",
1616
address="Philadelphia",
1717
series="Fundamentals of Algorithms",
18-
number=20,
19-
note="Unpublished book ms, under contract with SIAM"
18+
number=20
2019
}
2120

2221
@misc{ctk:notebooknl,
@@ -28,3 +27,4 @@ @misc{ctk:notebooknl
2827
url="https://github.com/ctkelley/NotebookSIAMFANL",
2928
doi="10.5281/zenodo.4284687"
3029
}
30+

SIAMFANLCh1.ipynb

+10-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,16 @@
3232
"cell_type": "code",
3333
"execution_count": 1,
3434
"metadata": {},
35-
"outputs": [],
35+
"outputs": [
36+
{
37+
"name": "stderr",
38+
"output_type": "stream",
39+
"text": [
40+
"┌ Info: Precompiling NotebookSIAMFANL [top-level]\n",
41+
"└ @ Base loading.jl:1662\n"
42+
]
43+
}
44+
],
3645
"source": [
3746
"include(\"fanote_init.jl\")"
3847
]

fanote_init.jl

+1-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
1-
# Test for bad version of Julia. I will remove this for 1.0
2-
## Delete starts here
3-
#
4-
using LinearAlgebra
5-
function vcheck()
6-
if (VERSION==v"1.7.0")
7-
mklok = any(contains("mkl"), getfield.(BLAS.get_config().loaded_libs, :libname))
8-
else
9-
mklok = false
10-
end
11-
blasproblem = ~mklok && (VERSION==v"1.6.4")
12-
if blasproblem
13-
error("OpenBLAS + Notebook will not work with Julia v1.6.4 or v1.7.0. ")
14-
end
15-
end
16-
vcheck()
17-
#
18-
## Delete ends here
19-
#
201
using Printf
212
Base.show(io::IO, f::Float64) = @printf(io, "%1.5e", f)
223
Base.show(io::IO, f::Float32) = @printf(io, "%1.5e", f)
234
Base.show(io::IO, f::Float16) = @printf(io, "%1.5e", f)
5+
using LinearAlgebra
246
using SIAMFANLEquations
257
using SIAMFANLEquations.TestProblems
268
using SIAMFANLEquations.Examples

0 commit comments

Comments
 (0)