Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
iRMB
VirtualFluids
Commits
4441fd10
Commit
4441fd10
authored
3 years ago
by
Gitlab Runner
Browse files
Options
Downloads
Patches
Plain Diff
Add print in loop.
parent
1920bbbe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!75
deletet all gpu related files, changed alle .cu files to .cpp files and add...
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/basics/basics/utilities/UbFileInputASCII.cpp
+14
-2
14 additions, 2 deletions
src/basics/basics/utilities/UbFileInputASCII.cpp
src/basics/basics/utilities/UbFileInputASCIITest.cpp
+2
-2
2 additions, 2 deletions
src/basics/basics/utilities/UbFileInputASCIITest.cpp
with
16 additions
and
4 deletions
src/basics/basics/utilities/UbFileInputASCII.cpp
+
14
−
2
View file @
4441fd10
...
...
@@ -180,9 +180,11 @@ int UbFileInputASCII::readIntegerAfterString(const string &var)
infile
.
seekg
(
0L
,
ios
::
beg
);
// Positionszeiger der Datei auf den Anfang setzen
char
line
[
512
];
int
counter
=
0
;
do
{
infile
.
getline
(
line
,
512
);
printf
(
"%d: %s
\n
"
,
counter
,
line
);
counter
++
;
if
(
infile
.
eof
())
UB_THROW
(
UbException
(
UB_EXARGS
,
"error at reading in file
\"
"
+
filename
+
"
\"
-> "
+
var
+
" wasn't found in "
+
this
->
filename
));
...
...
@@ -236,7 +238,6 @@ string UbFileInputASCII::readStringAfterString(const string &var) //,char *value
char
line
[
512
];
// string line_copy[512];
do
{
infile
.
getline
(
line
,
512
);
if
(
infile
.
eof
())
...
...
@@ -244,6 +245,17 @@ string UbFileInputASCII::readStringAfterString(const string &var) //,char *value
" wasn't found in "
+
this
->
filename
));
}
while
(
strstr
(
line
,
var
.
c_str
())
!=
line
);
// Ende Schleife, wenn varname ganz in zeile vorkommt
// std::string lineRead;
// while(getline(infile, lineRead))
// {
// if(lineRead.find(toSearch, 0) < lineRead.length())
// {
// occurenceNumber++;
// cout << counter << ":" << lineRead << endl;
// }
// }
std
::
string
temp
{
line
};
temp
=
temp
.
substr
(
var
.
size
());
// zeile um "varname" kuerzen
...
...
This diff is collapsed.
Click to expand it.
src/basics/basics/utilities/UbFileInputASCIITest.cpp
+
2
−
2
View file @
4441fd10
...
...
@@ -12,7 +12,7 @@ TEST(UbFileInputASCIITest, readIntegerAfterString)
UbFileInputASCII
sut
{
filePath
.
string
()};
//
const int actual = sut.readIntegerAfterString("test =");
const
int
actual
=
sut
.
readIntegerAfterString
(
"test ="
);
//
EXPECT_THAT(actual, testing::Eq(1));
EXPECT_THAT
(
actual
,
testing
::
Eq
(
1
));
}
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