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
206f00b3
Commit
206f00b3
authored
12 years ago
by
Nicolas Marsic
Browse files
Options
Downloads
Patches
Plain Diff
FunctionSpace: remove getOrder -- no more basis stuff in FunctionSpace
parent
8c81e2ed
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
FunctionSpace/FunctionSpace.h
+0
-6
0 additions, 6 deletions
FunctionSpace/FunctionSpace.h
with
0 additions
and
6 deletions
FunctionSpace/FunctionSpace.h
+
0
−
6
View file @
206f00b3
...
@@ -69,7 +69,6 @@ class FunctionSpace{
...
@@ -69,7 +69,6 @@ class FunctionSpace{
unsigned
int
getNBasis
(
void
)
const
;
unsigned
int
getNBasis
(
void
)
const
;
const
GroupOfElement
&
getSupport
(
void
)
const
;
const
GroupOfElement
&
getSupport
(
void
)
const
;
unsigned
int
getOrder
(
void
)
const
;
bool
isScalar
(
void
)
const
;
bool
isScalar
(
void
)
const
;
std
::
vector
<
Dof
>
getKeys
(
const
MElement
&
element
)
const
;
std
::
vector
<
Dof
>
getKeys
(
const
MElement
&
element
)
const
;
...
@@ -191,11 +190,6 @@ inline unsigned int FunctionSpace::getNBasis(void) const{
...
@@ -191,11 +190,6 @@ inline unsigned int FunctionSpace::getNBasis(void) const{
inline
const
GroupOfElement
&
FunctionSpace
::
getSupport
(
void
)
const
{
inline
const
GroupOfElement
&
FunctionSpace
::
getSupport
(
void
)
const
{
return
*
goe
;
return
*
goe
;
}
}
#include
"Exception.h"
inline
unsigned
int
FunctionSpace
::
getOrder
(
void
)
const
{
throw
Exception
(
"Remove me!"
);
return
(
unsigned
int
)((
*
basis
)[
0
]
->
getOrder
());
}
inline
bool
FunctionSpace
::
isScalar
(
void
)
const
{
inline
bool
FunctionSpace
::
isScalar
(
void
)
const
{
return
scalar
;
return
scalar
;
...
...
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