Changeset 955b91 for LinearAlgebra
- Timestamp:
- Mar 27, 2012, 3:53:35 PM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 4d2b33
- Parents:
- 912c40
- git-author:
- Frederik Heber <heber@…> (03/14/12 18:08:24)
- git-committer:
- Frederik Heber <heber@…> (03/27/12 15:53:35)
- Location:
- LinearAlgebra/src/LinearAlgebra
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
LinearAlgebra/src/LinearAlgebra/BoxVector.cpp
r912c40 r955b91 56 56 }; 57 57 58 ostream& operator<<(ostream& ost, const BoxVector& m)58 std::ostream& operator<<(std::ostream& ost, const BoxVector& m) 59 59 { 60 60 ost << "("; -
LinearAlgebra/src/LinearAlgebra/BoxVector.hpp
r912c40 r955b91 30 30 }; 31 31 32 ostream & operator << (ostream& ost, const BoxVector &m);32 std::ostream & operator << (std::ostream& ost, const BoxVector &m); 33 33 const BoxVector& operator*=(BoxVector& a, const double m); 34 34 BoxVector const operator*(const BoxVector& a, const double m); -
LinearAlgebra/src/LinearAlgebra/MatrixContent.cpp
r912c40 r955b91 133 133 do { 134 134 double value; 135 parseline >> value >> ws;135 parseline >> value >> std::ws; 136 136 line_of_values.push_back(value); 137 137 } while (parseline.good()); … … 775 775 do { 776 776 double value; 777 parseline >> value >> ws;777 parseline >> value >> std::ws; 778 778 line_of_values.push_back(value); 779 779 } while (parseline.good()); … … 799 799 // +toString((int)inputstream.tellg())+" from start of stream." << std::endl; 800 800 801 return make_pair(rows, columns);801 return std::make_pair(rows, columns); 802 802 } 803 803 -
LinearAlgebra/src/LinearAlgebra/Vector.hpp
r912c40 r955b91 1 1 #ifndef VECTOR_HPP_ 2 2 #define VECTOR_HPP_ 3 4 using namespace std;5 3 6 4 /*********************************************** includes ***********************************/ … … 117 115 const extern Vector unitVec[NDIM]; 118 116 119 ostream & operator << (ostream& ost, const Vector &m);117 std::ostream & operator << (std::ostream& ost, const Vector &m); 120 118 const Vector operator*(const double m, const Vector& a); 121 119 -
LinearAlgebra/src/LinearAlgebra/VectorContent.cpp
r912c40 r955b91 121 121 do { 122 122 double value; 123 parseline >> value >> ws;123 parseline >> value >> std::ws; 124 124 line_of_values.push_back(value); 125 125 } while (parseline.good()); … … 430 430 }; 431 431 432 ostream& operator<<(ostream& ost, const VectorContent& m)432 std::ostream& operator<<(std::ostream& ost, const VectorContent& m) 433 433 { 434 434 ost << "["; … … 568 568 do { 569 569 double value; 570 parseline >> value >> ws;570 parseline >> value >> std::ws; 571 571 line_of_values.push_back(value); 572 572 } while (parseline.good()); -
LinearAlgebra/src/LinearAlgebra/VectorSet.hpp
r912c40 r955b91 57 57 void translate(const Vector &translater){ 58 58 // this is needed to allow template lookup 59 transform(this->begin(),this->end(),this->begin(),std::bind1st(std::plus<Vector>(),translater));59 std::transform(this->begin(),this->end(),this->begin(),std::bind1st(std::plus<Vector>(),translater)); 60 60 } 61 61 … … 70 70 std::vector<Vector> helper; 71 71 helper.resize(this->size()); 72 transform(this->begin(),this->end(),72 std::transform(this->begin(),this->end(), 73 73 helper.begin(), 74 74 std::bind2nd(std::mem_fun_ref(&Vector::operator-),point)); … … 88 88 std::vector<double> helper; 89 89 helper.resize(this->size()); 90 transform(this->begin(),this->end(),90 std::transform(this->begin(),this->end(), 91 91 helper.begin(), 92 92 std::bind2nd(std::mem_fun_ref(&Vector::DistanceSquared),point));
Note:
See TracChangeset
for help on using the changeset viewer.