Skip to content

Commit 535e3d6

Browse files
committed
Added logging of end.
1 parent 4c3fa6c commit 535e3d6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

chc2c.py

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# limitations under the License.
1616

1717
import argparse
18+
import os
1819

1920
from src.LinearCHC2C import LinearCHC2C, RecursiveException
2021
from src.NonLinearCHC2C import NonLinearCHC2C
@@ -52,6 +53,8 @@ def main():
5253
with open(args.out, "w") as f_out:
5354
f_out.write(program)
5455

56+
print(f"Mapping done. Output: {os.path.abspath(args.filename)}")
57+
5558

5659
if __name__ == "__main__":
5760
main()

0 commit comments

Comments
 (0)