Macaulay2 Engine
Loading...
Searching...
No Matches

◆ rawPointArray()

M2PointArray * rawPointArray ( double epsilon,
int n )

Definition at line 1052 of file matrix.cpp.

1053{
1054 try {
1055 return new M2PointArray(new PointArray(epsilon, n));
1056 } catch (const exc::engine_error& e) {
1057 ERROR(e.what());
1058 return nullptr;
1059 }
1060}
MutableEngineObject wrapper that owns a PointArray via unique_ptr.
Definition NAG.hpp:88
Container of numerical points equipped with an -tolerance and a random weight vector used to bucket a...
Definition NAG.hpp:112
const int ERROR
Definition m2-mem.cpp:55

References ERROR.