Files
cvc5/examples/api/python/pythonic
yoni206 e08ec8dc9e Adding strings and sequences examples for the pythonic API (#10650)
This PR translates the strings and sequences examples from the base python API to the pythonic API.
2024-04-19 12:52:20 +00:00
..
2024-03-12 09:35:09 -07:00
2024-03-12 09:35:09 -07:00
2024-03-12 09:35:09 -07:00

Notes

These files are copied from the pythonic API's repository.

They were copied with this script:

for f in ~/$CVC_PYTHONIC/test/pgms/example_*; do; ff=$(echo ${f:t} | sed 's/example_//'); cat $f | sed 's/_pythonic_api/.pythonic/' > examples/api/python/pythonic/$ff ; done;

Notice that the script fixes up the import statements to align with a version of the cvc5 python APIs that are packaged together.