Ask Your Question
0

What is the algorithm used for polyhedra intersection?

asked 1 year ago

What is the algorithm used for polyhedra intersection and what is its time complexity? Is the algorithm based on a research paper? If so, which one?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 1 year ago

Max Alekseyev gravatar image

updated 1 year ago

You can always check source code of a particular function/method like this

P = Polyhedron()
??P.intersection

It tells us that .intersection() simply takes the union of inequalities/equations defining two polyhedra and constructs the resulting polyhedron out of it.

Preview: (hide)
link

Comments

"polynomial" -> "polyhedron"?

John Palmieri gravatar imageJohn Palmieri ( 1 year ago )

Already fixed

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )
-1

answered 1 year ago

Thank you, that was helpful. I didn't know this feature.

Preview: (hide)
link

Comments

Why did you post this as an answer?

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 1 year ago

Seen: 151 times

Last updated: Nov 27 '23