mirror of https://github.com/KLayout/klayout.git
WIP: removed TODO markers - needs to stay like that (e.g. drcSimpleTests:48_drcWithFragments)
This commit is contained in:
parent
ed7ed4158c
commit
30ee5e183f
|
|
@ -1105,25 +1105,25 @@ AsIfFlatRegion::notch_check (db::Coord d, const RegionCheckOptions &options) con
|
|||
EdgePairsDelegate *
|
||||
AsIfFlatRegion::enclosing_check (const Region &other, db::Coord d, const RegionCheckOptions &options) const
|
||||
{
|
||||
return run_check (db::OverlapRelation, true /*@@@false?*/, &other, d, options);
|
||||
return run_check (db::OverlapRelation, true, &other, d, options);
|
||||
}
|
||||
|
||||
EdgePairsDelegate *
|
||||
AsIfFlatRegion::overlap_check (const Region &other, db::Coord d, const RegionCheckOptions &options) const
|
||||
{
|
||||
return run_check (db::WidthRelation, true /*@@@false?*/, &other, d, options);
|
||||
return run_check (db::WidthRelation, true, &other, d, options);
|
||||
}
|
||||
|
||||
EdgePairsDelegate *
|
||||
AsIfFlatRegion::separation_check (const Region &other, db::Coord d, const RegionCheckOptions &options) const
|
||||
{
|
||||
return run_check (db::SpaceRelation, true /*@@@false?*/, &other, d, options);
|
||||
return run_check (db::SpaceRelation, true, &other, d, options);
|
||||
}
|
||||
|
||||
EdgePairsDelegate *
|
||||
AsIfFlatRegion::inside_check (const Region &other, db::Coord d, const RegionCheckOptions &options) const
|
||||
{
|
||||
return run_check (db::InsideRelation, true /*@@@false?*/, &other, d, options);
|
||||
return run_check (db::InsideRelation, true, &other, d, options);
|
||||
}
|
||||
|
||||
EdgePairsDelegate *
|
||||
|
|
|
|||
Loading…
Reference in New Issue