1 // SWIG file TensorImplementation.i 2 3 %{ 4 #include "openturns/TensorImplementation.hxx" 5 %} 6 7 %include TensorImplementation_doc.i 8 9 %rename(TensorImplementation_operator___eq__) OT::operator ==(const TensorImplementation & lhs, const TensorImplementation & rhs); 10 11 %include openturns/TensorImplementation.hxx TensorImplementation(const TensorImplementation & other)12namespace OT{ %extend TensorImplementation { TensorImplementation(const TensorImplementation & other) { return new OT::TensorImplementation(other); } } } 13