Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/toCLIString.cpp

    r33e801 r27d0bc  
    4040#include "LinearAlgebra/RealSpaceMatrix.hpp"
    4141#include "LinearAlgebra/Vector.hpp"
    42 #include "Parameters/Specifics/KeyValuePair.hpp"
    43 
    44 #include "Actions/toPythonString.hpp"
    4542
    4643template <>
     
    6865    << _value.at(2,0) << ","
    6966    << _value.at(2,1) << ","
    70     << _value.at(2,2)
    71     << "\"";
     67    << _value.at(2,2) << "\"";
    7268  return output.str();
    7369}
     
    7773{
    7874  std::stringstream output;
    79   output << "\"" << toPythonString(_value) << "\"";
     75  output << "\"" << _value[0] << "," << _value[1] << "," << _value[2] << "\"";
    8076  return output.str();
    8177}
     
    8884  return output.str();
    8985}
    90 
    91 template <>
    92 const std::string toCLIString( const KeyValuePair& _value)
    93 {
    94   std::stringstream output;
    95   output << "\"" << toPythonString(_value) << "\"";
    96   return output.str();
    97 }
Note: See TracChangeset for help on using the changeset viewer.