Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Fastest way of running hundreds of booleans

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Fastest way of running hundreds of booleans


Chronological Thread 
  • From: aseverino <>
  • To:
  • Subject: Re: [cgal-discuss] Fastest way of running hundreds of booleans
  • Date: Mon, 2 Nov 2020 07:39:07 -0600 (CST)
  • Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None ; spf=SoftFail ; spf=Pass
  • Ironport-phdr: 9a23:NtGyhRIgjlBvM/cak9mcpTZWNBhigK39O0sv0rFitYgeLP7xwZ3uMQTl6Ol3ixeRBMOHsq0C0rKP+Py6EUU7or+5+EgYd5JNUxJXwe43pCcHRPC/NEvgMfTxZDY7FskRHHVs/nW8LFQHUJ2mPw6arXK99yMdFQviPgRpOOv1BpTSj8Oq3Oyu5pHfeQpFiCe/bL9oMRm6sRjdusYZjId8N6081gbHrnxUdupM2GhmP0iTnxHy5sex+J5s7SFdsO8/+sBDTKv3Yb02QaRXAzo6PW814tbrtQTYQguU+nQcSGQWnQFWDAXD8Rr3Q43+sir+tup6xSmaIcj7Rq06VDi+86tmTgLjhSEaPDA77W7XkNR9gqxbrhy/pBJwwYDUbpyaO/Vica3QZs8aSGhdUspNSyBNHp2wYo0SBOQBJ+ZYqIz9qkMUohulGwasGv3gyiVJhn/w2q0xzuMsHhvC3AM+ENMBqnLUo8jvNKgMS+y61rPEzS7dYPNIxzj98onIchYmofyXUrJwdNDeyUgrFw/fklqQronlMiqT2+8QvGeV8/BuWvizi247tQ5xuD6vy98ihIfGhY8YxFLJ+yV5zos6JNC0Vk92bN2qHZZStyyUOYt4Tt8+Tmx0uys3xL0ItJq1cSUL1JgqxR/SZfyHfYWH5B/oSeifITB9hH1/ebK/gQ6/8U66xeLnTca01EhFojBZndnLs3AA0QHY5MufSvZl40us3TKC2xrd5+xHO0w5lqvWJ4Qgz7MxkJcYrF7NETXsmErsia+bbkUk9fas6+TgerjmoJCRO5Vyig7kKashgci/DvoiPgcSWGib/Pyw1Lzl/ULnXLVHluA6n63dvZzAK8kWpbS1DgxU34o56huyDi+q0NECknkGKFJFdgiHj4/sO1zWOv/4Cemwglu2nzdt2v/GJKPuDo/XIXTZi7fuY6h95FBGyAoyy9Bf4IlZCr4EIP3pW0/xsMbUAQM+Mwyx2+rnEsly1psCWWKTBa+UKL/dsVCS6eIrOuWDeY4VuC3hJPg4/P7ulmQ0mUQdfKmsxZsYcmq0HvVgI0WDYHrjmM0NEWkQvll2cOu/g1KLVXtfZm25QrknzjA9EoOvS4nZFa63h7nU1Ty2AJBMZ2ZBQgSFFXr4foOIQfpKYWSJL9FsiD0CUpCuToYg0VelswqsmOkvFfbd5iBN7cGr79Ny/eCGzUhupwwxNNyU1iS2d08xhnkBHmZk06V2oEg7wVCGg/Ah3q5oUOdL7vYMaT8UcJ7Ry+sjVoL0BkTHd92DTFvgSdKjU2hoH4ABhuQWakM4IO2MyxXK3i6kGbgQzuXZC5k986aa1H/0dZ1w

I have tried the divide and conquer method, but some booleans have been
failing.

Let's say I have 8 clones (disregard that one of them was the original):

C_1 + C_8 = R_1 (runs ok)
C_2 + C_7 = R_2 (runs ok)
C_3 + C_6 = R_3 (runs ok)
C_4 + C_5 = R_4 (runs ok)

But here it gets tricky. For some reason:

R_1 + R_4 = THIRD_1 (is unreliable, just like)
R_2 + R_3 = THIRD_2

And even if I get (inconsistently) through this part of the process
"unharmed", the "third generation" is very likely to crash the application:

THIRD_1 + THIRD_2 = very likely to crash

That is why I was asking if it's possible to minus the original model from
the clones directly in a parallel fashion.



--
Sent from: http://cgal-discuss.949826.n4.nabble.com/



Archive powered by MHonArc 2.6.19+.

Top of Page