Changeset 11bab4
- Timestamp:
- Oct 3, 2016, 11:26:02 AM (9 years ago)
- Branches:
- Fix_FitPotential_needs_atomicnumbers
- Children:
- de81b9
- Parents:
- 0b7036
- Location:
- src
- Files:
-
- 8 edited
-
FunctionApproximation/Extractors.cpp (modified) (2 diffs)
-
FunctionApproximation/Extractors.hpp (modified) (2 diffs)
-
Potentials/Specifics/ConstantPotential.cpp (modified) (1 diff)
-
Potentials/Specifics/ManyBodyPotential_Tersoff.cpp (modified) (1 diff)
-
Potentials/Specifics/PairPotential_Harmonic.cpp (modified) (1 diff)
-
Potentials/Specifics/PairPotential_LennardJones.cpp (modified) (1 diff)
-
Potentials/Specifics/PairPotential_Morse.cpp (modified) (1 diff)
-
Potentials/Specifics/ThreeBodyPotential_Angle.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/FunctionApproximation/Extractors.cpp
r0b7036 r11bab4 160 160 FunctionModel::list_of_arguments_t Extractors::reorderArgumentsByParticleTypes( 161 161 const FunctionModel::list_of_arguments_t &listargs, 162 const ParticleTypes_t &_types 162 const ParticleTypes_t &_types, 163 const boost::adjacency_list<> &_subgraph 163 164 ) 164 165 { … … 313 314 FunctionModel::list_of_arguments_t Extractors::filterArgumentsByParticleTypes( 314 315 const FunctionModel::arguments_t &args, 315 const ParticleTypes_t &_types 316 const ParticleTypes_t &_types, 317 const boost::adjacency_list<> &_subgraph 316 318 ) 317 319 { -
src/FunctionApproximation/Extractors.hpp
r0b7036 r11bab4 104 104 * 105 105 * \param listargs list of arguments to reorder each 106 * \param _types particle type vector 106 * \param _types particle type vector which gives the order of the distance arguments 107 * \param _subgraph specifies the subgraph which we need to find in the arguments 107 108 * \return reordered args 108 109 */ 109 110 FunctionModel::list_of_arguments_t reorderArgumentsByParticleTypes( 110 111 const FunctionModel::list_of_arguments_t &eachargs, 111 const ParticleTypes_t &_types 112 const ParticleTypes_t &_types, 113 const boost::adjacency_list<> &_subgraph 112 114 ); 113 115 … … 118 120 * 119 121 * \param args arguments to reorder 120 * \param _types particle type vector 122 * \param _types particle type vector which gives the order of the distance arguments 123 * \param _subgraph specifies the subgraph which we need to find in the arguments 121 124 * \return filtered list of args 122 125 */ 123 126 FunctionModel::list_of_arguments_t filterArgumentsByParticleTypes( 124 127 const FunctionModel::arguments_t &args, 125 const ParticleTypes_t &_types 128 const ParticleTypes_t &_types, 129 const boost::adjacency_list<> &_subgraph 126 130 ); 127 131 -
src/Potentials/Specifics/ConstantPotential.cpp
r0b7036 r11bab4 184 184 boost::bind(&Extractors::filterArgumentsByParticleTypes, 185 185 _1, 186 getParticleTypes() );186 getParticleTypes(), getSubgraph()); 187 187 return returnfunction; 188 188 } -
src/Potentials/Specifics/ManyBodyPotential_Tersoff.cpp
r0b7036 r11bab4 704 704 boost::bind(&Extractors::filterArgumentsByParticleTypes, 705 705 _1, 706 getParticleTypes() );706 getParticleTypes(), getSubgraph()); 707 707 return returnfunction; 708 708 } -
src/Potentials/Specifics/PairPotential_Harmonic.cpp
r0b7036 r11bab4 202 202 boost::bind(&Extractors::filterArgumentsByParticleTypes, 203 203 _1, 204 getParticleTypes() );204 getParticleTypes(), getSubgraph()); 205 205 return returnfunction; 206 206 } -
src/Potentials/Specifics/PairPotential_LennardJones.cpp
r0b7036 r11bab4 212 212 boost::bind(&Extractors::filterArgumentsByParticleTypes, 213 213 _1, 214 getParticleTypes() );214 getParticleTypes(), getSubgraph()); 215 215 return returnfunction; 216 216 } -
src/Potentials/Specifics/PairPotential_Morse.cpp
r0b7036 r11bab4 228 228 boost::bind(&Extractors::filterArgumentsByParticleTypes, 229 229 _1, 230 getParticleTypes() );230 getParticleTypes(), getSubgraph()); 231 231 return returnfunction; 232 232 } -
src/Potentials/Specifics/ThreeBodyPotential_Angle.cpp
r0b7036 r11bab4 230 230 boost::bind(&Extractors::filterArgumentsByParticleTypes, 231 231 _1, 232 getParticleTypes() ),233 getParticleTypes() 232 getParticleTypes(), getSubgraph()), 233 getParticleTypes(), getSubgraph() 234 234 ); 235 235 return returnfunction;
Note:
See TracChangeset
for help on using the changeset viewer.
