Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
0a97c923
Commit
0a97c923
authored
16 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
fix compile
parent
02b11a02
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
Numeric/gmshLinearSystemGmm.h
+5
-5
5 additions, 5 deletions
Numeric/gmshLinearSystemGmm.h
with
5 additions
and
5 deletions
Numeric/gmshLinearSystemGmm.h
+
5
−
5
View file @
0a97c923
...
...
@@ -79,16 +79,16 @@ public :
{
Msg
::
Error
(
"Gmm++ is not available on this version of gmsh"
);
}
virtual
bool
isAllocated
()
const
{}
virtual
bool
isAllocated
()
const
{
return
false
;
}
virtual
void
allocate
(
int
nbRows
)
{}
virtual
void
addToMatrix
(
int
_row
,
int
_col
,
double
val
)
{}
virtual
double
getFromMatrix
(
int
_row
,
int
_col
)
const
{}
virtual
double
getFromMatrix
(
int
_row
,
int
_col
)
const
{
return
0.
;
}
virtual
void
addToRightHandSide
(
int
_row
,
double
val
)
{}
virtual
double
getFromRightHandSide
(
int
_row
)
const
{}
virtual
double
getFromSolution
(
int
_row
)
const
{}
virtual
double
getFromRightHandSide
(
int
_row
)
const
{
return
0.
;
}
virtual
double
getFromSolution
(
int
_row
)
const
{
return
0.
;
}
virtual
void
zeroMatrix
()
{}
virtual
void
zeroRightHandSide
()
{}
virtual
int
systemSolve
()
{}
virtual
int
systemSolve
()
{
return
0
;
}
};
#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