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
fd1474d8
"Plugin/CutBox.h" did not exist on "c081b9d935efb438735d5ea55ada73c32b8fd9fa"
Commit
fd1474d8
authored
14 years ago
by
Éric Béchet
Browse files
Options
Downloads
Patches
Plain Diff
err in dummy class declaration
parent
dcb5bac7
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
Solver/linearSystemGMM.h
+6
-5
6 additions, 5 deletions
Solver/linearSystemGMM.h
with
6 additions
and
5 deletions
Solver/linearSystemGMM.h
+
6
−
5
View file @
fd1474d8
...
@@ -114,14 +114,15 @@ class linearSystemGmm : public linearSystem<scalar> {
...
@@ -114,14 +114,15 @@ class linearSystemGmm : public linearSystem<scalar> {
}
}
virtual
bool
isAllocated
()
const
{
return
false
;
}
virtual
bool
isAllocated
()
const
{
return
false
;
}
virtual
void
allocate
(
int
nbRows
)
{}
virtual
void
allocate
(
int
nbRows
)
{}
virtual
void
addToMatrix
(
int
row
,
int
col
,
scalar
&
val
)
{}
virtual
void
addToMatrix
(
int
row
,
int
col
,
const
scalar
&
val
)
{}
virtual
void
getFromMatrix
(
int
row
,
int
col
,
scalar
&
val
)
const
{
return
0.
;
}
virtual
void
getFromMatrix
(
int
row
,
int
col
,
scalar
&
val
)
const
{}
virtual
void
addToRightHandSide
(
int
row
,
scalar
&
val
)
{}
virtual
void
addToRightHandSide
(
int
row
,
const
scalar
&
val
)
{}
virtual
void
getFromRightHandSide
(
int
row
,
scalar
&
val
)
const
{
return
0.
;
}
virtual
void
getFromRightHandSide
(
int
row
,
scalar
&
val
)
const
{}
virtual
void
getFromSolution
(
int
row
,
scalar
&
val
)
const
{
return
0.
;
}
virtual
void
getFromSolution
(
int
row
,
scalar
&
val
)
const
{}
virtual
void
zeroMatrix
()
{}
virtual
void
zeroMatrix
()
{}
virtual
void
zeroRightHandSide
()
{}
virtual
void
zeroRightHandSide
()
{}
virtual
int
systemSolve
()
{
return
0
;
}
virtual
int
systemSolve
()
{
return
0
;
}
virtual
double
normInfRightHandSide
()
const
{
return
0.
;
}
void
setPrec
(
double
p
){}
void
setPrec
(
double
p
){}
virtual
void
clear
(){}
virtual
void
clear
(){}
void
setNoisy
(
int
n
){}
void
setNoisy
(
int
n
){}
...
...
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