Changeset 0c7ed8
- Timestamp:
- Jun 2, 2010, 11:03:06 AM (15 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:
- 1dc9ec
- Parents:
- d690fa
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gslvector.cpp
rd690fa r0c7ed8 11 11 #include "gslvector.hpp" 12 12 #include "defs.hpp" 13 #include "vector.hpp" 13 14 14 15 /** Constructor of class GSLVector. … … 59 60 gsl_vector_memcpy (vector, &m.vector); 60 61 }; 62 63 /** 64 * This function sets the GSLvector from an ordinary vector. 65 * 66 * Takes access to the internal gsl_vector and copies it 67 */ 68 void GSLVector::SetFromVector(Vector &v){ 69 gsl_vector_memcpy (vector, v.get()); 70 } 61 71 62 72 /** This function returns the i-th element of a vector. -
src/gslvector.hpp
rd690fa r0c7ed8 24 24 25 25 class GSLVector; 26 class Vector; 26 27 27 28 /********************************************** declarations *******************************/ … … 38 39 // Accessing 39 40 void SetFromDoubleArray(double *x); 41 void SetFromVector(Vector &v); 40 42 double Get(size_t m) const; 41 43 void Set(size_t m, double x); -
src/linearsystemofequations.cpp
rd690fa r0c7ed8 54 54 { 55 55 assert ( columns == NDIM && "Vector class is always three-dimensional, unlike this LEqS!"); 56 b->SetFrom DoubleArray(x->get());56 b->SetFromVector(*x); 57 57 }; 58 58 -
src/vector.cpp
rd690fa r0c7ed8 24 24 { 25 25 content = gsl_vector_calloc (NDIM); 26 gsl_vector_set(content,0,0);27 gsl_vector_set(content,1,0);28 gsl_vector_set(content,2,0);29 26 }; 30 27 … … 387 384 } 388 385 389 double* Vector::get(){ 390 static double res[NDIM]; 391 res[0]=gsl_vector_get(content,0); 392 res[1]=gsl_vector_get(content,1); 393 res[2]=gsl_vector_get(content,2); 394 return res; 386 gsl_vector* Vector::get(){ 387 return content; 395 388 } 396 389 -
src/vector.hpp
rd690fa r0c7ed8 79 79 80 80 // Access to internal structure 81 double* get();81 gsl_vector* get(); 82 82 83 83 // Methods that are derived directly from other methods … … 104 104 105 105 private: 106 gsl_vector *content;106 gsl_vector *content; 107 107 108 108 };
Note:
See TracChangeset
for help on using the changeset viewer.