File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
# This file is a part of InverseFunctions.jl, licensed under the MIT License (MIT).
2
2
3
- using InverseFunctions
4
- using Documenter
5
- using Test
3
+ import Test
4
+ import InverseFunctions
5
+ import Documenter
6
6
7
- @testset " Package InverseFunctions" begin
7
+ Test . @testset " Package InverseFunctions" begin
8
8
include (" test_inverse.jl" )
9
9
10
10
# doctests
11
- DocMeta. setdocmeta! (
11
+ Documenter . DocMeta. setdocmeta! (
12
12
InverseFunctions,
13
13
:DocTestSetup ,
14
14
:(using InverseFunctions);
15
15
recursive= true ,
16
16
)
17
- doctest (InverseFunctions)
17
+ Documenter . doctest (InverseFunctions)
18
18
end # testset
Original file line number Diff line number Diff line change 1
1
# This file is a part of InverseFunctions.jl, licensed under the MIT License (MIT).
2
2
3
+ using Test
4
+ using InverseFunctions
5
+
6
+
3
7
foo (x) = inv (exp (- x) + 1 )
4
8
inv_foo (y) = log (y / (1 - y))
5
9
You can’t perform that action at this time.
0 commit comments