-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthias Koefferlein
committed
Apr 28, 2024
1 parent
1c367f3
commit fbc336d
Showing
7 changed files
with
1,068 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
source($drc_test_source) | ||
report("Report comment with\nanother line", $drc_test_report) | ||
|
||
deep | ||
|
||
l1 = input(1, 0) | ||
l1 = l1.sized(0.1, 0.0) | ||
|
||
l1.output("l1", "L1 (1/0 sized by x=100nm,y=0)") | ||
l1.drc(width < 1.0.um).output("w1um", "w < 1µm\nFrom sized input") | ||
|
||
l1s = l1.snapped(200.nm) | ||
l1s.output("l1_snapped", "L1 snapped to 200nm") | ||
l1s.drc(width < 1.0.um).output("w1um_snapped", "w < 1µm\nFrom snapped input") | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
source($drc_test_source) | ||
report("Report comment with\nanother line", $drc_test_report) | ||
|
||
deep | ||
|
||
l1 = input(1, 0) | ||
l1s = l1.sized(0.1, 0.0) | ||
|
||
l1.output([ "input", "L1" ], "Original layer") | ||
l1s.output([ "input", "L1S" ], "Sized original layer") | ||
|
||
l1s.drc(width < 1.0.um).output("w1um", "w < 1µm\nFrom sized input") | ||
|
Binary file not shown.
Oops, something went wrong.