growing and shrinking polygons for random testing of
play

Growing and Shrinking Polygons for Random Testing of Computational - PowerPoint PPT Presentation

Growing and Shrinking Polygons for Random Testing of Computational Geometry Algorithms Experience Report Ilya Sergey ICFP 2016 September 20th, 2016 Polygons Polygons Polygons Polygons Polygons are Trees Polygons are Trees We can


  1. How well did that work? • Multiple bugs (>20) due to inaccurate treatment of floating points ; • Several bugs (~10) due to misreading of the textbook algorithms or simplifications in their descriptions; • Two bugs in the Joe-Simpson algorithm itself;

  2. How well did that work? • Multiple bugs (>20) due to inaccurate treatment of floating points ; • Several bugs (~10) due to misreading of the textbook algorithms or simplifications in their descriptions; • Two bugs in the Joe-Simpson algorithm itself; • Bonus : an undocumented behavior in the 
 state-of-the-art CGAL library 
 (written in C++ using exact arithmetics).

  3. How well did that work? • Multiple bugs (>20) due to inaccurate treatment of floating points ; • Several bugs (~10) due to misreading of the textbook algorithms or simplifications in their descriptions; • Two bugs in the Joe-Simpson algorithm itself; • Bonus : an undocumented behavior in the 
 state-of-the-art CGAL library 
 (written in C++ using exact arithmetics).

  4. Testing basic visibility algorithm • Main component for checking arbitrary solutions; • Original description (1986) has a number of simplifications and is given in pseudocode.

  5. 
 Testing basic visibility algorithm import RandomRectilinearPolygonGenerator._ 
 property ( "All visibility polygons lie within the original polygon" ) = 
 forAll { (p : Polygon) => 
 val guards = p.vertices 
 val vps = guards.map( visibilityPolygon (p, _)) 
 "Every edge of a visibility polygon is within ${ p }" |: { 
 val edges = for (vp <- vps; e <- vp.edges) yield e 
 edges.forall(p.containsSegment) 
 } 
 }

  6. 
 Testing basic visibility algorithm import RandomRectilinearPolygonGenerator._ 
 property ( "All visibility polygons lie within the original polygon" ) = 
 forAll { (p : Polygon) => 
 val guards = p.vertices 
 val vps = guards.map( visibilityPolygon (p, _)) 
 "Every edge of a visibility polygon is within ${ p }" |: { 
 val edges = for (vp <- vps; e <- vp.edges) yield e 
 edges.forall(p.containsSegment) 
 } 
 }

  7. 
 Testing basic visibility algorithm import RandomRectilinearPolygonGenerator._ 
 property ( "All visibility polygons lie within the original polygon" ) = 
 forAll { (p : Polygon) => 
 val guards = p.vertices 
 val vps = guards.map( visibilityPolygon (p, _)) 
 "Every edge of a visibility polygon is within ${ p }" |: { 
 val edges = for (vp <- vps; e <- vp.edges) yield e 
 edges.forall(p.containsSegment) 
 } 
 }

  8. 
 Testing basic visibility algorithm import RandomRectilinearPolygonGenerator._ 
 property ( "All visibility polygons lie within the original polygon" ) = 
 forAll { (p : Polygon) => 
 val guards = p.vertices 
 val vps = guards.map( visibilityPolygon (p, _)) 
 "Every edge of a visibility polygon is within ${ p }" |: { 
 val edges = for (vp <- vps; e <- vp.edges) yield e 
 edges.forall(p.containsSegment) 
 } 
 }

  9. Bug in Joe-Simpson algorithm Randomly generated, 260 vertices, guards in every node

  10. Bug in Joe-Simpson algorithm Randomly generated, 260 vertices, guards in every node ??!

  11. Shrinking Polygons

  12. Trimming Shrinking Polygons

  13. Reconstructing polygon generation

  14. Reconstructing polygon generation 3 3 4 4 2 2 5 5 1 1 6 6 7 7

  15. Reconstructing polygon generation 1 “Attachment tree” 3 4 2 6 2 5 1 3 6 7 4 7 5

  16. Trimming polygons 1 3 4 2 6 2 5 1 3 6 7 4 7 5

  17. Trimming polygons 1 3 4 2 6 2 5 1 3 6 7 4 7 5

  18. Shrinking strategy • Build the attachment tree while constructing a random polygon; • Construct all its subtrees ; • “Render” the corresponding trimmed polygons.

  19. Bug in Joe-Simpson algorithm Randomly generated, 260 vertices, guards in every node

  20. Bug in Joe-Simpson algorithm Randomly generated, 260 vertices, guards in every node

  21. Bug in Joe-Simpson algorithm After trimming, 20 vertices

  22. Bug in Joe-Simpson algorithm Removed 
 irrelevant guards

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend