-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from ArnoStrouwen/ci
more CI
- Loading branch information
Showing
10 changed files
with
52 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
using DataInterpolations | ||
u = 2.0collect(1:10) | ||
t = 1.0collect(1:10) | ||
A = LinearInterpolation(u, t) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using DataInterpolations, Test | ||
using DataInterpolations | ||
using StableRNGs | ||
using Optim, ForwardDiff | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using DataInterpolations, Test | ||
using DataInterpolations | ||
|
||
t = [1, 2, 3] | ||
u = [0, 1, 0] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
using DataInterpolations | ||
import StableRNGs: StableRNG | ||
using RegularizationTools | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,10 @@ | ||
using DataInterpolations, Test | ||
using SafeTestsets | ||
|
||
@testset "DataInterpolations" begin | ||
@testset "Quality Assurance" begin | ||
include("qa.jl") | ||
end | ||
@testset "Interface" begin | ||
include("interface.jl") | ||
end | ||
@testset "Interpolation Tests" begin | ||
include("interpolation_tests.jl") | ||
end | ||
@testset "Derivative Tests" begin | ||
include("derivative_tests.jl") | ||
end | ||
@testset "Integral Tests" begin | ||
include("integral_tests.jl") | ||
end | ||
@testset "Online Tests" begin | ||
include("online_tests.jl") | ||
end | ||
@testset "Regularization Smoothing" begin | ||
include("regularization.jl") | ||
end | ||
@testset "Show methods" begin | ||
include("show.jl") | ||
end | ||
end | ||
@safetestset "Quality Assurance" include("qa.jl") | ||
@safetestset "Interface" include("interface.jl") | ||
@safetestset "Interpolation Tests" include("interpolation_tests.jl") | ||
@safetestset "Derivative Tests" include("derivative_tests.jl") | ||
@safetestset "Integral Tests" include("integral_tests.jl") | ||
@safetestset "Online Tests" include("online_tests.jl") | ||
@safetestset "Regularization Smoothing" include("regularization.jl") | ||
@safetestset "Show methods" include("show.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
using DataInterpolations | ||
using Optim, StableRNGs | ||
using RegularizationTools | ||
|
||
|