| 567 | |
| 568 | |
| 569 | bool get_head_element( |
| 570 | const string& elem, |
| 571 | const string& expected) |
| 572 | { |
| 573 | if (elem != expected) |
| 574 | { |
| 575 | cout << "PBN list does not start with " << expected << |
| 576 | ": '" << elem << "'" << endl; |
| 577 | return false; |
| 578 | } |
| 579 | else |
| 580 | return true; |
| 581 | } |
| 582 | |
| 583 | |
| 584 | bool get_int_element( |
no outgoing calls
no test coverage detected