Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/gslvector.cpp

    r0c7ed8 r112b09  
    66 */
    77
     8#include "Helpers/MemDebug.hpp"
     9
    810#include <cassert>
    911#include <cmath>
     
    1113#include "gslvector.hpp"
    1214#include "defs.hpp"
    13 #include "vector.hpp"
    1415
    1516/** Constructor of class GSLVector.
     
    6061  gsl_vector_memcpy (vector, &m.vector);
    6162};
    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 }
    7163
    7264/** This function returns the i-th element of a vector.
Note: See TracChangeset for help on using the changeset viewer.