Changeset 955b91 for LinearAlgebra


Ignore:
Timestamp:
Mar 27, 2012, 3:53:35 PM (13 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

FIX: Removed using namespace std in Vector.hpp.

  • this caused some follow-up problems in other LinearAlgebra modules,
mostly stuff from iostream not having std
prefix then.
this also caused more of them in MoleCuilder modules, mostly due to string,
stringstream, and numeric_limits with std
prefix.
Location:
LinearAlgebra/src/LinearAlgebra
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • LinearAlgebra/src/LinearAlgebra/BoxVector.cpp

    r912c40 r955b91  
    5656};
    5757
    58 ostream& operator<<(ostream& ost, const BoxVector& m)
     58std::ostream& operator<<(std::ostream& ost, const BoxVector& m)
    5959{
    6060  ost << "(";
  • LinearAlgebra/src/LinearAlgebra/BoxVector.hpp

    r912c40 r955b91  
    3030};
    3131
    32 ostream & operator << (ostream& ost, const BoxVector &m);
     32std::ostream & operator << (std::ostream& ost, const BoxVector &m);
    3333const BoxVector& operator*=(BoxVector& a, const double m);
    3434BoxVector const operator*(const BoxVector& a, const double m);
  • LinearAlgebra/src/LinearAlgebra/MatrixContent.cpp

    r912c40 r955b91  
    133133    do {
    134134      double value;
    135       parseline >> value >> ws;
     135      parseline >> value >> std::ws;
    136136      line_of_values.push_back(value);
    137137    } while (parseline.good());
     
    775775    do {
    776776      double value;
    777       parseline >> value >> ws;
     777      parseline >> value >> std::ws;
    778778      line_of_values.push_back(value);
    779779    } while (parseline.good());
     
    799799//      +toString((int)inputstream.tellg())+" from start of stream." << std::endl;
    800800
    801   return make_pair(rows, columns);
     801  return std::make_pair(rows, columns);
    802802}
    803803
  • LinearAlgebra/src/LinearAlgebra/Vector.hpp

    r912c40 r955b91  
    11#ifndef VECTOR_HPP_
    22#define VECTOR_HPP_
    3 
    4 using namespace std;
    53
    64/*********************************************** includes ***********************************/
     
    117115const extern Vector unitVec[NDIM];
    118116
    119 ostream & operator << (ostream& ost, const Vector &m);
     117std::ostream & operator << (std::ostream& ost, const Vector &m);
    120118const Vector operator*(const double m, const Vector& a);
    121119
  • LinearAlgebra/src/LinearAlgebra/VectorContent.cpp

    r912c40 r955b91  
    121121    do {
    122122      double value;
    123       parseline >> value >> ws;
     123      parseline >> value >> std::ws;
    124124      line_of_values.push_back(value);
    125125    } while (parseline.good());
     
    430430};
    431431
    432 ostream& operator<<(ostream& ost, const VectorContent& m)
     432std::ostream& operator<<(std::ostream& ost, const VectorContent& m)
    433433{
    434434  ost << "[";
     
    568568    do {
    569569      double value;
    570       parseline >> value >> ws;
     570      parseline >> value >> std::ws;
    571571      line_of_values.push_back(value);
    572572    } while (parseline.good());
  • LinearAlgebra/src/LinearAlgebra/VectorSet.hpp

    r912c40 r955b91  
    5757  void translate(const Vector &translater){
    5858    // 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));
    6060  }
    6161
     
    7070    std::vector<Vector> helper;
    7171    helper.resize(this->size());
    72     transform(this->begin(),this->end(),
     72    std::transform(this->begin(),this->end(),
    7373              helper.begin(),
    7474              std::bind2nd(std::mem_fun_ref(&Vector::operator-),point));
     
    8888    std::vector<double> helper;
    8989    helper.resize(this->size());
    90     transform(this->begin(),this->end(),
     90    std::transform(this->begin(),this->end(),
    9191              helper.begin(),
    9292              std::bind2nd(std::mem_fun_ref(&Vector::DistanceSquared),point));
Note: See TracChangeset for help on using the changeset viewer.