Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
ee97122d
Commit
ee97122d
authored
20 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
read and write methods improved for more ascii information.
[[Imported from SVN: r1264]]
parent
904b9241
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fem/discfuncarray.hh
+10
-10
10 additions, 10 deletions
fem/discfuncarray.hh
with
10 additions
and
10 deletions
fem/discfuncarray.hh
+
10
−
10
View file @
ee97122d
...
...
@@ -144,25 +144,25 @@ namespace Dune {
//! print all dofs
void
print
(
std
::
ostream
&
s
)
const
;
//! write data of discrete function to file filename
|timestep
//! write data of discrete function to file filename
//! with xdr methods
bool
write_xdr
(
const
char
*
filename
,
int
timestep
);
bool
write_xdr
(
const
char
*
filename
);
//! write data of discrete function to file filename
|timestep
//! write data of discrete function to file filename
//! with xdr methods
bool
read_xdr
(
const
char
*
filename
,
int
timestep
);
bool
read_xdr
(
const
char
*
filename
);
//! write function data to file filename
|timestep
in ascii Format
bool
write_ascii
(
const
char
*
filename
,
int
timestep
);
//! write function data to file filename in ascii Format
bool
write_ascii
(
const
char
*
filename
);
//! read function data from file filename
|timestep
in ascii Format
bool
read_ascii
(
const
char
*
filename
,
int
timestep
);
//! read function data from file filename in ascii Format
bool
read_ascii
(
const
char
*
filename
);
//! write function data in pgm fromat file
bool
write_pgm
(
const
char
*
filename
,
int
timestep
)
;
bool
write_pgm
(
const
char
*
filename
)
;
//! read function data from pgm fromat file
bool
read_pgm
(
const
char
*
filename
,
int
timestep
);
bool
read_pgm
(
const
char
*
filename
);
private
:
// get memory for discrete function
...
...
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