MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / convertDoubleArrayToString

Method convertDoubleArrayToString

src/proofs/JsonWriter.cpp:346–355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

344}
345
346String JsonWriter::convertDoubleArrayToString( const double *arr, unsigned size )
347{
348 String arrString = "[";
349 for ( unsigned i = 0; i < size - 1; ++i )
350 arrString += convertDoubleToString( arr[i] ) + ", ";
351
352 arrString += convertDoubleToString( arr[size - 1] ) + "]";
353
354 return arrString;
355}
356
357String JsonWriter::convertSparseUnsortedListToString( SparseUnsortedList sparseList )
358{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected