Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KennethVanhoey
CGoGN
Commits
adbf345d
Commit
adbf345d
authored
Mar 23, 2012
by
Pierre Kraemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add virtual status to mapTypeName function in MR maps
parent
6d4091ee
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
include/Topology/map/map2MR/map2MR_PrimalAdapt.h
include/Topology/map/map2MR/map2MR_PrimalAdapt.h
+1
-1
include/Topology/map/map2MR/map2MR_PrimalRegular.h
include/Topology/map/map2MR/map2MR_PrimalRegular.h
+1
-1
include/Topology/map/map3MR/map3MR_PrimalAdapt.h
include/Topology/map/map3MR/map3MR_PrimalAdapt.h
+1
-1
include/Topology/map/map3MR/map3MR_PrimalRegular.h
include/Topology/map/map3MR/map3MR_PrimalRegular.h
+1
-1
include/Utils/cgognStream.h
include/Utils/cgognStream.h
+1
-1
No files found.
include/Topology/map/map2MR/map2MR_PrimalAdapt.h
View file @
adbf345d
...
...
@@ -46,7 +46,7 @@ protected:
public:
Map2MR_PrimalAdapt
()
;
std
::
string
mapTypeName
()
{
return
"Map2MR_PrimalAdapt"
;
}
virtual
std
::
string
mapTypeName
()
const
{
return
"Map2MR_PrimalAdapt"
;
}
/***************************************************
* CELLS INFORMATION *
...
...
include/Topology/map/map2MR/map2MR_PrimalRegular.h
View file @
adbf345d
...
...
@@ -45,7 +45,7 @@ protected:
public:
Map2MR_PrimalRegular
()
;
std
::
string
mapTypeName
()
{
return
"Map2MR_PrimalRegular"
;
}
virtual
std
::
string
mapTypeName
()
const
{
return
"Map2MR_PrimalRegular"
;
}
void
addNewLevel
(
bool
embedNewVertices
=
true
)
;
...
...
include/Topology/map/map3MR/map3MR_PrimalAdapt.h
View file @
adbf345d
...
...
@@ -55,7 +55,7 @@ protected:
public:
Map3MR_PrimalAdapt
();
std
::
string
mapTypeName
()
{
return
"Map3MR_PrimalAdapt"
;
}
virtual
std
::
string
mapTypeName
()
const
{
return
"Map3MR_PrimalAdapt"
;
}
/*! @name Topological helping functions
*
...
...
include/Topology/map/map3MR/map3MR_PrimalRegular.h
View file @
adbf345d
...
...
@@ -49,7 +49,7 @@ protected:
public:
Map3MR_PrimalRegular
();
std
::
string
mapTypeName
()
{
return
"Map3MR_PrimalRegular"
;
}
virtual
std
::
string
mapTypeName
()
const
{
return
"Map3MR_PrimalRegular"
;
}
/*! @name Topological helping functions
*
...
...
include/Utils/cgognStream.h
View file @
adbf345d
...
...
@@ -188,7 +188,7 @@ Out& Out::operator<< (const T& val)
if
(
m_out_mode
&
STDERR
)
std
::
cerr
<<
val
;
if
(
m_out_mode
&
&
(
FILEOUT
|
QTSTATUSBAR
|
QTCONSOLE
|
SSBUFFER
))
if
(
m_out_mode
&
(
FILEOUT
|
QTSTATUSBAR
|
QTCONSOLE
|
SSBUFFER
))
m_buffer
<<
val
;
return
*
this
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment