WIP: removed TODO markers - needs to stay like that (e.g. drcSimpleTests:48_drcWithFragments)

This commit is contained in:
Matthias Koefferlein 2023-01-21 19:04:00 +01:00
parent ed7ed4158c
commit 30ee5e183f
1 changed files with 4 additions and 4 deletions

View File

@ -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 *