Treksit – Graph theory game
11–20 of 24 posts
Re: Treksit – Graph theory game
#12One problem we had was that J opened the menu at the bottom of the [small] playing area, that covered the "right arrow" that moves on to the next map. It wasn't obvious how to get back to playing, the "play" button didn't close the menu and the collapse arrow wasn't visually apparent.
Re: Treksit – Graph theory game
#13Re: Treksit – Graph theory game
#14J age 11yo says it's "cool-a-rooney". Personally I liked it, but the instructions were too terse to get us started properly and the hyperspeed thing is a little strange, I assume it's just a distraction? One problem we had was that J opened the menu at the bottom of the [small] playing area, that covered the "right arrow" that moves on to the next map. It wasn't obvious how to get back to playing, the "play" button d…
Re: Treksit – Graph theory game
#15Re: Treksit – Graph theory game
#16Fun! This is similar to Simon Tatham's Untangle ( http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ and the sgt-puzzles package on Debian systems).
Original version is http://planarity.net/ , made by me! I rewrote it in JavaScript a few years back: https://github.com/tantalor/raphael.planarity
Re: Treksit – Graph theory game
#17More suggestions:
* A reset button when things get too messed up
* A "check my work" button that highlights errors, which can be hard to see when there get to be a lot of points and edges
* Ability to select and drag multiple points (particularly useful when you need to shift an entire section over to have more room to work
* A clearer explanation of the UI (I was reluctant to click on the diamond icons for fear of losing my progress)
* Some sort of ending (even just a "Congratulations" message)
Re: Treksit – Graph theory game
#18Would be good if there was a leaderboard with times
Re: Treksit – Graph theory game
#19Nifty. The arbitrary size of the playfield (and its invisible border) was annoying at times, though. More suggestions: * A reset button when things get too messed up * A "check my work" button that highlights errors, which can be hard to see when there get to be a lot of points and edges * Ability to select and drag multiple points (particularly useful when you need to shift an entire section over to have more room t…
Also loved this game. Found it challenging - seems like a good starting point is to find the nodes with the least links and put them around the edge, maintaining all the symmetries you can. Love the feeling of inversion that you get when you eliminate a load of crosses in one move.
Re: Treksit – Graph theory game
#20Easy peasy puzzle
Easy peasy? Isn't graph planarity NP-complete?
I believe the planarity test algorithm has been improved, such that it can be done in O(n) using the edge addition method [1].
[1] http://www.drdobbs.com/planarity-by-edge-addition/184406070