Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SemiSmoothNewton.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stephan Hilb
SemiSmoothNewton.jl
Compare revisions
fdcc7ea5860bca4895c9de59936eaf3e4ee5df30 to b1e43968703189650bf15783c95bcfd9b2495fb3
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
stephan.hilb/SemiSmoothNewton.jl
Select target project
No results found
b1e43968703189650bf15783c95bcfd9b2495fb3
Select Git revision
Branches
andreas/paper2
master
Tags
v0.1
v1.0
4 results
Swap
Target
stephan.hilb/SemiSmoothNewton.jl
Select target project
stephan.hilb/SemiSmoothNewton.jl
1 result
fdcc7ea5860bca4895c9de59936eaf3e4ee5df30
Select Git revision
Branches
andreas/paper2
master
Tags
v0.1
v1.0
4 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
this is a commit
· 01b43bac
Andreas Langer
authored
4 months ago
01b43bac
revert bad changes
· 2548a0dc
Stephan Hilb
authored
4 months ago
2548a0dc
Merge branch 'andreas/paper2'
· b1e43968
Stephan Hilb
authored
4 months ago
b1e43968
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
scripts/run.jl
+4
-2
4 additions, 2 deletions
scripts/run.jl
with
5 additions
and
2 deletions
.gitignore
View file @
b1e43968
...
...
@@ -2,3 +2,4 @@
*.pvd
data/*
output/*
scripts/data/*
This diff is collapsed.
Click to expand it.
scripts/run.jl
View file @
b1e43968
include
(
"run_experiments.jl"
)
const
datapath
=
joinpath
(
@__DIR__
,
"../../data"
)
const
outpath
=
joinpath
(
@__DIR__
,
"../../data"
)
#const datapath = joinpath(@__DIR__, "../../data")
#const outpath = joinpath(@__DIR__, "../../data")
const
datapath
=
joinpath
(
@__DIR__
,
"data"
)
const
outpath
=
joinpath
(
@__DIR__
,
"data"
)
ctx
=
Util
.
Context
(
datapath
,
outpath
)
...
...
This diff is collapsed.
Click to expand it.