Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
preprocessor
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
Container registry
Model registry
Operate
Environments
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
Dynare
preprocessor
Commits
92c3cbdf
Verified
Commit
92c3cbdf
authored
5 years ago
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused classes
parent
78ff24ea
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/DynamicModel.hh
+0
-24
0 additions, 24 deletions
src/DynamicModel.hh
with
0 additions
and
24 deletions
src/DynamicModel.hh
+
0
−
24
View file @
92c3cbdf
...
@@ -724,28 +724,4 @@ public:
...
@@ -724,28 +724,4 @@ public:
bool
isChecksumMatching
(
const
string
&
basename
,
bool
block
)
const
;
bool
isChecksumMatching
(
const
string
&
basename
,
bool
block
)
const
;
};
};
//! Classes to re-order derivatives for various sparse storage formats
class
derivative
{
public:
long
unsigned
int
linear_address
;
long
unsigned
int
col_nbr
;
unsigned
int
row_nbr
;
expr_t
value
;
derivative
(
long
unsigned
int
arg1
,
long
unsigned
int
arg2
,
int
arg3
,
expr_t
arg4
)
:
linear_address
(
arg1
),
col_nbr
(
arg2
),
row_nbr
(
arg3
),
value
(
arg4
)
{
};
};
class
derivative_less_than
{
public:
bool
operator
()(
const
derivative
&
d1
,
const
derivative
&
d2
)
const
{
return
d1
.
linear_address
<
d2
.
linear_address
;
}
};
#endif
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment