The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches

Functions for printing Pauli data structures. More...

Functions

void reportPauliStr (PauliStr str)
 
void reportPauliStrSum (PauliStrSum str)
 

Detailed Description

Functions for printing Pauli data structures.

Function Documentation

◆ reportPauliStr()

void reportPauliStr ( PauliStr str)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 484 of file paulis.cpp.

484 {
485
486 // no header, so no indentation
487 string indent = "";
488 print_elemsWithoutNewline(str, indent);
489
490 // print all user-set newlines (including none)
491 print_newlines();
492}

◆ reportPauliStrSum()

void reportPauliStrSum ( PauliStrSum str)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 495 of file paulis.cpp.

495 {
496 validate_pauliStrSumFields(sum, __func__);
497 validate_numReportedNewlinesAboveZero(__func__);
498
499 // calculate memory usage
500 qindex numStrBytes = sum.numTerms * sizeof *sum.strings;
501 qindex numCoeffBytes = sum.numTerms * sizeof *sum.coeffs;
502 qindex numStrucBytes = sizeof(sum);
503
504 // we don't bother checking for overflow since total memory scales
505 // linearly with user input parameters, unlike Qureg and matrices.
506 qindex numTotalBytes = numStrBytes + numCoeffBytes + numStrucBytes;
507
508 print_header(sum, numTotalBytes);
509 print_elems(sum);
510
511 // exclude mandatory newline above
512 print_oneFewerNewlines();
513}