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
54cfe24f
Commit
54cfe24f
authored
12 years ago
by
Nicolas Marsic
Browse files
Options
Downloads
Patches
Plain Diff
Edges...
parent
6d01c50f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FunctionSpace/FunctionSpace.cpp
+1
-2
1 addition, 2 deletions
FunctionSpace/FunctionSpace.cpp
FunctionSpace/FunctionSpace.h
+2
-3
2 additions, 3 deletions
FunctionSpace/FunctionSpace.h
with
3 additions
and
5 deletions
FunctionSpace/FunctionSpace.cpp
+
1
−
2
View file @
54cfe24f
...
...
@@ -13,8 +13,7 @@ FunctionSpace::FunctionSpace(const GroupOfElement& goe, int basisType, int order
int
nVertex
=
element
.
getNumVertices
();
int
nEdge
=
element
.
getNumEdges
();
int
nFace
=
element
.
getNumFaces
();
nTotVertex
=
goe
.
getNVertex
();
// Init Struct //
type
=
basisType
;
basis
=
BasisGenerator
::
generate
(
elementType
,
...
...
This diff is collapsed.
Click to expand it.
FunctionSpace/FunctionSpace.h
+
2
−
3
View file @
54cfe24f
...
...
@@ -23,16 +23,15 @@
class
FunctionSpace
{
protected:
const
GroupOfElement
*
goe
;
const
Basis
*
basis
;
int
fPerVertex
;
int
fPerEdge
;
int
fPerFace
;
int
fPerCell
;
int
type
;
const
GroupOfElement
*
goe
;
int
nTotVertex
;
public:
FunctionSpace
(
const
GroupOfElement
&
goe
,
int
basisType
,
int
order
);
...
...
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