Changeset 0c7ed8


Ignore:
Timestamp:
Jun 2, 2010, 11:03:06 AM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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
Message:

Passed the internal gsl_vector structure from Vector to linearSystemOfEquations.

Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/gslvector.cpp

    rd690fa r0c7ed8  
    1111#include "gslvector.hpp"
    1212#include "defs.hpp"
     13#include "vector.hpp"
    1314
    1415/** Constructor of class GSLVector.
     
    5960  gsl_vector_memcpy (vector, &m.vector);
    6061};
     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 */
     68void GSLVector::SetFromVector(Vector &v){
     69  gsl_vector_memcpy (vector, v.get());
     70}
    6171
    6272/** This function returns the i-th element of a vector.
  • src/gslvector.hpp

    rd690fa r0c7ed8  
    2424
    2525class GSLVector;
     26class Vector;
    2627
    2728/********************************************** declarations *******************************/
     
    3839  // Accessing
    3940  void SetFromDoubleArray(double *x);
     41  void SetFromVector(Vector &v);
    4042  double Get(size_t m) const;
    4143  void Set(size_t m, double x);
  • src/linearsystemofequations.cpp

    rd690fa r0c7ed8  
    5454{
    5555  assert ( columns == NDIM && "Vector class is always three-dimensional, unlike this LEqS!");
    56   b->SetFromDoubleArray(x->get());
     56  b->SetFromVector(*x);
    5757};
    5858
  • src/vector.cpp

    rd690fa r0c7ed8  
    2424{
    2525  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);
    2926};
    3027
     
    387384}
    388385
    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;
     386gsl_vector* Vector::get(){
     387  return content;
    395388}
    396389
  • src/vector.hpp

    rd690fa r0c7ed8  
    7979
    8080  // Access to internal structure
    81   double* get();
     81  gsl_vector* get();
    8282
    8383  // Methods that are derived directly from other methods
     
    104104
    105105private:
    106   gsl_vector* content;
     106  gsl_vector *content;
    107107
    108108};
Note: See TracChangeset for help on using the changeset viewer.