Adding tensor methods

This commit is contained in:
2023-11-01 14:13:45 +01:00
parent cb3281ed91
commit 296ed6b785
9 changed files with 144 additions and 112 deletions

View File

@@ -1,11 +1,10 @@
#include "SVC.h"
#include <iostream>
namespace pywrap {
void SVC::version()
std::string SVC::version()
{
std::cout << "repr_html: " << callMethod("_repr_html_") << std::endl;
return callMethodString("_repr_html_");
}
} /* namespace pywrap */