diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4a822db9af4dcb4c6ef6615ad8caf6e22d2e4728..6415026b0ca368272b29fc921b8c4b1afe7765aa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,6 +29,8 @@ before_script:
     # - lcov --list coverage.info
     # - find . -name '*.gc*' -delete
   artifacts:
+    paths:
+      - result_images/
     reports:
       coverage_report:
         coverage_format: cobertura
diff --git a/b_asic/_preferences.py b/b_asic/_preferences.py
index 83ac3f43cfb680e2bbcf65a1a42c295941f1809e..c20d23db1afa2448057512157749e3822771777d 100644
--- a/b_asic/_preferences.py
+++ b/b_asic/_preferences.py
@@ -9,7 +9,7 @@ OPERATION_GAP: float = 0.5
 
 SCHEDULE_OFFSET: float = 0.2
 
-SPLINE_OFFSET: float = 0.2
+SPLINE_OFFSET: float = 0.5
 
 # Colors for architecture Digraph
 PE_COLOR = (0, 185, 231)  # LiuBlue
diff --git a/b_asic/schedule.py b/b_asic/schedule.py
index 67ec8f9b9a0b7046da6c1f20589270d06b26b621..013925cda64d10d67be7e437663211051cecb1c7 100644
--- a/b_asic/schedule.py
+++ b/b_asic/schedule.py
@@ -1120,13 +1120,10 @@ class Schedule:
                         [
                             start,
                             [start[0] + SPLINE_OFFSET, start[1]],
-                            [start[0] + SPLINE_OFFSET, (start[1] + end[1]) / 2],
-                            [start[0], (start[1] + end[1]) / 2],
-                            [start[0] - SPLINE_OFFSET, (start[1] + end[1]) / 2],
                             [start[0] - SPLINE_OFFSET, end[1]],
                             end,
                         ],
-                        [Path.MOVETO] + [Path.CURVE4] * 6,
+                        [Path.MOVETO] + [Path.CURVE4] * 3,
                     )
                 else:
                     path = Path(