Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
benchmark-eagle
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
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
Stéphane Adjemian
benchmark-eagle
Compare revisions
ad36b8721fda2ead7671f1b827d46194b8db3b3a to 9720f7537afc18ee7904ab93e3459d0a3a90ed55
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
stepan-a/benchmark-eagle
Select target project
No results found
9720f7537afc18ee7904ab93e3459d0a3a90ed55
Select Git revision
Swap
Target
stepan-a/benchmark-eagle
Select target project
stepan-a/benchmark-eagle
1 result
ad36b8721fda2ead7671f1b827d46194b8db3b3a
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Change default values.
· 2ea3875f
Stéphane Adjemian
authored
6 months ago
2ea3875f
Fix logic and add comments.
· 9720f753
Stéphane Adjemian
authored
6 months ago
9720f753
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
models/modeqs.mod
+6
-6
6 additions, 6 deletions
models/modeqs.mod
models/pshock.mod
+3
-3
3 additions, 3 deletions
models/pshock.mod
models/tshock.mod
+3
-3
3 additions, 3 deletions
models/tshock.mod
with
12 additions
and
12 deletions
models/modeqs.mod
View file @
9720f753
@#if !BLOCKS && !BYTECODE && !USE_DLL
@#if !BLOCKS && !BYTECODE && !USE_DLL
// -> MATLAB
model;
@#elseif BLOCKS && !BYTECODE && !USE_DLL
@#elseif BLOCKS && !BYTECODE && !USE_DLL
// -> MATLAB WITH BLOCKS
model(block, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#elseif !BLOCKS && BYTECODE
@#elseif !BLOCKS && BYTECODE
&& !USE_DLL // -> BYTECODE
model(bytecode);
@#elseif BLOCKS && BYTECODE
@#elseif BLOCKS && BYTECODE
&& !USE_DLL // -> BYTECODE WITH BLOCKS
model(block, bytecode, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#elseif !BLOCKS && USE_DLL
@#elseif !BLOCKS &&
!BYTECODE && USE_DLL // ->
USE_DLL
model(use_dll);
@#else
@#else
// USE_DLL WITH BLOCKS
model(block, use_dll, cutoff=@{CUTOFF_VALUE}, mfs=@{MFS_VALUE}, static_mfs=@{STATIC_MFS_VALUE});
@#endif
...
...
This diff is collapsed.
Click to expand it.
models/pshock.mod
View file @
9720f753
@#define steady = 0
@#ifndef BLOCKS
@#define BLOCKS=
tru
e
@#define BLOCKS=
fals
e
@#endif
@#ifndef BYTECODE
@#define BYTECODE=
tru
e
@#define BYTECODE=
fals
e
@#endif
@#ifndef USE_DLL
@#define USE_DLL=
fals
e
@#define USE_DLL=
tru
e
@#endif
@#ifndef MFS_VALUE
...
...
This diff is collapsed.
Click to expand it.
models/tshock.mod
View file @
9720f753
@#define steady = 0
@#ifndef BLOCKS
@#define BLOCKS=
tru
e
@#define BLOCKS=
fals
e
@#endif
@#ifndef BYTECODE
@#define BYTECODE=
tru
e
@#define BYTECODE=
fals
e
@#endif
@#ifndef USE_DLL
@#define USE_DLL=
fals
e
@#define USE_DLL=
tru
e
@#endif
@#ifndef MFS_VALUE
...
...
This diff is collapsed.
Click to expand it.