- Timestamp:
- Dec 4, 2010, 11:56:28 PM (14 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:
- 35fbef
- Parents:
- 694eae
- git-author:
- Frederik Heber <heber@…> (11/18/10 14:55:04)
- git-committer:
- Frederik Heber <heber@…> (12/04/10 23:56:28)
- Location:
- src/LinearAlgebra
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/LinearAlgebra/Makefile.am
r694eae r3da2fb 18 18 linearsystemofequations.cpp \ 19 19 MatrixContent.cpp \ 20 MatrixVector_ops.cpp \ 20 21 Plane.cpp \ 21 22 RealSpaceMatrix.cpp \ … … 34 35 linearsystemofequations.hpp \ 35 36 MatrixContent.hpp \ 37 MatrixVector_ops.hpp \ 36 38 RealSpaceMatrix.hpp \ 37 39 Plane.hpp \ -
src/LinearAlgebra/MatrixContent.cpp
r694eae r3da2fb 644 644 } 645 645 646 Vector operator*(const MatrixContent &mat,const Vector &vec)647 {648 Vector result;649 gsl_blas_dgemv( CblasNoTrans, 1.0, mat.content, vec.content->content, 0.0, result.content->content);650 return result;651 }652 646 653 647 std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat) -
src/LinearAlgebra/MatrixContent.hpp
r694eae r3da2fb 37 37 #include <iosfwd> 38 38 39 class Vector; 39 #include "LinearAlgebra/MatrixVector_ops.hpp" 40 40 41 class VectorContent; 41 42 … … 47 48 class MatrixContent 48 49 { 49 friend Vector operator*(const MatrixContent &mat,const Vector &vec);50 50 friend std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat); 51 51 friend class RealSpaceMatrix; 52 52 friend class LinearSystemOfEquations; 53 53 54 // matrix vector products 55 friend VectorContent const operator*(const VectorContent& vec, const MatrixContent& mat); 56 friend VectorContent const operator*(const MatrixContent& mat, const VectorContent& vec); 57 58 // unit tests 54 59 friend class MatrixContentTest; 55 60 friend class MatrixContentSymmetricTest; … … 123 128 const MatrixContent operator*(const double factor,const MatrixContent& mat); 124 129 const MatrixContent operator*(const MatrixContent &mat,const double factor); 125 Vector operator*(const MatrixContent &mat,const Vector &vec);126 130 std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat); 127 131 -
src/LinearAlgebra/Vector.hpp
r694eae r3da2fb 32 32 */ 33 33 class Vector : public Space{ 34 friend Vector operator*(const MatrixContent&,const Vector&); 34 friend Vector const operator*(const MatrixContent&,const Vector&); 35 friend Vector const operator*(const Vector&,const MatrixContent&); 35 36 friend class RealSpaceMatrix; // needs access to Vector(VectorContent*&) due to views 36 37 public: … … 103 104 virtual Vector getClosestPoint(const Vector &point) const; 104 105 106 explicit Vector(VectorContent *&); 107 explicit Vector(VectorContent &_content); 105 108 protected: 106 109 107 110 private: 108 explicit Vector(VectorContent *&);109 explicit Vector(VectorContent &_content);110 111 VectorContent *content; 111 112 -
src/LinearAlgebra/VectorContent.hpp
r694eae r3da2fb 22 22 #include <gsl/gsl_vector.h> 23 23 24 #include "LinearAlgebra/MatrixVector_ops.hpp" 25 24 26 class Vector; 27 class MatrixContent; 25 28 26 29 /** Dummy structure to create a unique signature. … … 35 38 friend VectorContent const operator+(const VectorContent& a, const VectorContent& b); 36 39 friend VectorContent const operator-(const VectorContent& a, const VectorContent& b); 40 41 // matrix vector products 42 friend VectorContent const operator*(const VectorContent& vec, const MatrixContent& mat); 43 friend VectorContent const operator*(const MatrixContent& mat, const VectorContent& vec); 37 44 38 45 public:
Note:
See TracChangeset
for help on using the changeset viewer.