Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lattice-dehomogenization
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
Package Registry
Container 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
Samuel Hayden
lattice-dehomogenization
Commits
3b15bce1
Commit
3b15bce1
authored
1 year ago
by
samuel.hayden
Browse files
Options
Downloads
Patches
Plain Diff
Removed commented out code
parent
97c23902
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LatticeDehomogenization/src/inputParsing/ParseInputFile.cpp
+0
-36
0 additions, 36 deletions
LatticeDehomogenization/src/inputParsing/ParseInputFile.cpp
with
0 additions
and
36 deletions
LatticeDehomogenization/src/inputParsing/ParseInputFile.cpp
+
0
−
36
View file @
3b15bce1
...
...
@@ -31,42 +31,6 @@ void ParseInputFile::parsePositions(size_t nPositions)
_hasPositions
=
true
;
}
//void ParseInputFile::determineRadii()
//{
// if (_radii.size() != 1)
// {
// std::cout << "[Error](determineRadii) Radii already determined";
// return;
// }
//
// _radii.resize(_points.size());
// for (size_t i = 1; i < _points.size(); i++)
// _radii[i] = _radii[0];
// _hasRadii = true;
//}
//
//void ParseInputFile::determinePositions()
//{
// if (_nx == 0 || _ny == 0 || _nz == 0)
// {
// std::cout << "[Error](determinePositions) Number of cells not defined" << std::endl;
// return;
// }
// if (_cx == 0.0 || _cy == 0.0 || _cz == 0.0)
// {
// std::cout << "[Error](determinePositions) Cell size not defined" << std::endl;
// return;
// }
//
// size_t nPoints = _nx * _ny * _nz;
// _points.reserve(nPoints);
// for (size_t k = 0; k < _nz; k++)
// for (size_t j = 0; j < _ny; j++)
// for (size_t i = 0; i < _nx; i++)
// _points.emplace_back(_cx * i, _cy * j, _cz * k);
// _hasPositions = true;
//}
/* Parsed Data */
ParseInputFile
::
ParseInputFile
(
std
::
string
filepath
)
...
...
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