Changeset d951a5 for src/FunctionApproximation
- Timestamp:
- Apr 23, 2021, 8:51:43 PM (5 years ago)
- Branches:
- Candidate_v1.7.0, stable
- Children:
- 1be100
- Parents:
- 0f9eb0
- git-author:
- Frederik Heber <frederik.heber@…> (03/27/21 14:54:53)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/23/21 20:51:43)
- Location:
- src/FunctionApproximation
- Files:
-
- 2 edited
-
Extractors.cpp (modified) (3 diffs)
-
Extractors.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/FunctionApproximation/Extractors.cpp
r0f9eb0 rd951a5 398 398 } 399 399 400 static Extractors::ParticleType_tgetParticleTypeToNode(400 Extractors::ParticleType_t Extractors::getParticleTypeToNode( 401 401 const type_index_lookup_t &type_index_lookup, 402 402 const size_t nodeindex) … … 404 404 const type_index_lookup_t::left_const_iterator typeiter = type_index_lookup.left.find(nodeindex); 405 405 ASSERT( typeiter != type_index_lookup.left.end(), 406 " getParticleTypeToNode() - could not find type to node #"+toString(nodeindex));406 "Extractors::getParticleTypeToNode() - could not find type to node #"+toString(nodeindex)); 407 407 return typeiter->second; 408 408 } … … 438 438 // we first store edges in a set to ensure their uniqueness (as we encounter 439 439 // each edge two times and we don't know if source and target will be 440 // different the second time encountered) 440 // different the second time encountered). 441 LOG(4, "DEBUG: Adding edge " << sourceindex << "<->" << targetindex << " to set."); 441 442 if (sourceindex < targetindex) 442 443 edge_set.insert( std::make_pair(sourceindex, targetindex) ); -
src/FunctionApproximation/Extractors.hpp
r0f9eb0 rd951a5 117 117 } 118 118 119 Extractors::ParticleType_t getParticleTypeToNode( 120 const type_index_lookup_t &type_index_lookup, 121 const size_t nodeindex); 122 119 123 HomologyGraph createHomologyGraphFromNodes( 120 124 const nodes_t &nodes,
Note:
See TracChangeset
for help on using the changeset viewer.
