frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Generating Mazes with Inductive Graphs (2017)

https://jelv.is/blog/Generating-Mazes-with-Inductive-Graphs/
20•todsacerdoti•11mo ago

Comments

tomfly•11mo ago
where is the entrance and exit?
Jaxan•11mo ago
Doesn’t matter, because all positions are reachable. So just pick any two positions at the border and remove a wall.
kazinator•11mo ago
Here is a maze that was generated recursively starting at the upper left cell.

  +    +----+----+----+----+----+----+----+----+----+
  |    |                        |                   |
  |    |                        |                   |
  +    +----+----+    +----+    +----+    +----+    +
  |              |         |                   |    |
  |              |         |                   |    |
  +----+----+    +    +----+----+----+----+----+    +
  |              |    |                        |    |
  |              |    |                        |    |
  +    +----+----+    +    +----+----+----+    +    +
  |         |              |              |    |    |
  |         |              |              |    |    |
  +    +----+    +    +----+----+----+    +    +----+
  |              |    |                   |    |    |
  |              |    |                   |    |    |
  +----+----+----+    +    +----+----+----+    +    +
  |                        |                   |    |
  |                        |                   |    |
  +    +----+----+----+    +    +----+----+----+    +
  |    |    |              |    |              |    |
  |    |    |              |    |              |    |
  +    +    +    +    +----+    +    +----+    +    +
  |    |    |    |    |         |    |         |    |
  |    |    |    |    |         |    |         |    |
  +    +    +    +    +----+----+----+    +    +    +
  |    |    |    |    |                   |         |
  |    |    |    |    |                   |         |
  +    +    +----+    +    +----+----+    +----+----+
  |              |         |                        |
  |              |         |                        |
  +----+----+----+----+----+----+----+----+----+    +

It matters to start there because it will be easier if you go backwards.

The maze has 100 cells. For each cell, we can calculate which exit goes back toward the entrance, assigning the letters U, D, L, R:

  U R R D L L R D L L
  U L L D L U L L L U
  R R U D D L L L L U
  U L D L L R R D U U
  U L L U D L L L U D
  R R R U L R R R U D
  U D R R U U R R D D
  U D U U R U U D L D
  U D U U D L L L U L
  U L L U L R R U L L
Stats:

  L - 33
  U - 29
  R - 20
  D - 18
Left and Up are more frequent back-to-entrance escapes than Right or Down. This is because of the way the maze was generated.

To check the hypothesis, we should analyze it in the other direction. For each cell, determine the exit which heads in the direction of the exit:

  D R R D L L R D L L
  D R D D L U L L L U
  D L L D D L L L L U
  D L R D L R R D D U
  R R U D D L L L U D
  R R R R D R R R U D
  U D R D L U R R D D
  U D U D R U U D L D
  U D U D R R R D U L
  U L L R U R R R R D
Stats:

  D - 30
  R - 28
  L - 24
  U - 18
There is a weaker bias for the D-R axis toward the exit, compared to the L-U axis toward the entrance. I suspect if we study larger numbers of larger mazes, we will find similar findings.

So that is to say, it is easier to navigate the maze in the reverse direction: the heuristic to try left/up exits will work more often than the right/down in the proper direction.

smartmic•11mo ago
From the book "Mazes for Programmers" by Jamis Buck, 2015, The Pragmatic Programmers (a must-read for any maze/programming enthusiast!):

> Aren't mazes supposed to have starting points and end points? […] honestly, […] it's entirely up to you. […] The maze […] is a perfect maze, and one of the attributes of a perfect maze is that there exists exactly one path between any two cells in it. […] You pick them, and there's guaranteed to be a path between them.

You do not need to choose an entrance or exit only on the sides, but you can also choose "Pacman-style" where the goal is to reach points inside the maze.

"Perfect" refers to the mathematical/logical properties of a maze (i.e. no loops), not the aesthetical aspect. I have not checked though if the mazes in the source here are all perfect.

kazinator•11mo ago
While you can put the entrance and exit wherever you want, if you know that the maze was generated by a recursive branching process which had a starting point somewhere, it probably behooves you to put the start at that point corresponding to the root of the tree, so that the maze wanderer faces the most branching choices.

Laying out the abstract maze tree into the rectilinear grid of cells obfuscates the tree somewhat, but not entirely. A process that generates from upper left to lower right, for instance, will tend to generate cells whose parent-headed exits going left and up more often than not, making the reverse direction a bit easier.

(Again, it depends on the maze generation process.)

kazinator•11mo ago
Making random mazes in a rectilinear grid is a good exercise for one big reason: mazes are not all the same. Mazes have style can be very knotty and twisty, or have long passages. You can add hacks into a given algorithm to vary the style, but there are certain things it won't necessarily do.

Noelia Castillo Euthanasia Case

https://en.wikipedia.org/wiki/Noelia_Castillo_euthanasia_case
1•stared•53s ago•0 comments

See what your AI agents are doing (multi-agent observability tool)

https://github.com/hit1001/multiagent-visibility-tool
1•denhit10•1m ago•0 comments

Show HN: Writevoid.com – stop writing, and the void takes it

https://writevoid.com
1•user_timo•3m ago•1 comments

Data centre to be built near planned Polish nuclear power plant

https://world-nuclear-news.org/articles/data-centre-to-be-built-near-planned-polish-nuclear-power...
1•mpweiher•5m ago•0 comments

Ipxlat: a stateless IPv4/IPv6 translation device

https://lore.kernel.org/netdev/20260319151230.655687-1-ralf@mandelbit.com/T/#m6b6603d690f9bd7f85c...
1•argulane•7m ago•0 comments

I built Amazon dynamo in elixir

https://jitesh117.github.io/blog/implementing-amazon-dynamo-in-elixir/
1•Jitesh117•7m ago•0 comments

A discrete-logic solution to the Three-Body Problem (99% compute saving)

https://github.com/alikamp/Parks-Node-Ejection-Protocol
1•kauai1•9m ago•0 comments

Splitflap.org: open-source split-flap display for any screen

https://splitflap.org/
1•mohdmahmodi•9m ago•0 comments

You shall know them by their scams

https://terminaldrift.substack.com/p/you-shall-know-them-by-their-scams
1•limbicsystem•12m ago•0 comments

Show HN: 10 Lines of Python to fix mangled copy-paste from Claude Code

1•collectedparts•13m ago•0 comments

Ronda Rousey Fights Like an Outlier (2015)

https://fivethirtyeight.com/features/ronda-rousey-fights-like-an-outlier/
1•chistev•14m ago•1 comments

Understanding the Go Runtime: The Garbage Collector

https://internals-for-interns.com/posts/go-garbage-collector/
1•valyala•14m ago•0 comments

Proxybase IP Whois Aggregator

https://proxybase.xyz/ip
1•m00dy•15m ago•0 comments

Final analysis of 2025 Iberian blackout: electrical grid operating policies left

https://arstechnica.com/science/2026/03/final-analysis-of-2025-iberian-blackout-policies-left-spa...
1•fanf2•17m ago•0 comments

Rustlings - Small exercises to get you used to reading and writing Rust code

https://rustlings.rust-lang.org/
3•tilt•18m ago•0 comments

I Built My Personal Site with AI in 4 Days

https://www.dhawalshah.net/article/building-personal-site-with-ai
2•djshah•19m ago•0 comments

Open Source Gave Me Everything Until I Had Nothing Left to Give

https://kennethreitz.org/essays/2026-03-18-open_source_gave_me_everything_until_i_had_nothing_lef...
2•rglullis•21m ago•0 comments

Study: Sycophantic AI can undermine human judgment

https://arstechnica.com/science/2026/03/study-sycophantic-ai-can-undermine-human-judgment/
1•Liriel•22m ago•0 comments

Show HN: Web service for writing a log (history) of your company

https://sharedlog.app/
1•keyhell•22m ago•0 comments

Building Kenya's Money Rail with .NET SQL Server and SMS in 2005

https://jkitsao.substack.com/p/inside-the-first-m-pesa-backend-20052013
1•kitsao•29m ago•0 comments

Show HN: Agent Forge, an agent framework, heuristic routing and graph execution

https://github.com/Minns-ai/agent-forge-sdk
1•gooseyGander•30m ago•0 comments

Porting Go's io package to C

https://antonz.org/porting-go-io/
1•valyala•31m ago•0 comments

Switch preferences and chat history from other LLM apps to Gemini

https://blog.google/innovation-and-ai/products/gemini-app/switch-to-gemini-app/
1•Yizahi•33m ago•1 comments

OpenAI "indefinitely" shelves plans for erotic ChatGPT

https://arstechnica.com/tech-policy/2026/03/chatgpt-wont-talk-dirty-any-time-soon-as-sexy-mode-tu...
1•isaacfrond•36m ago•0 comments

Show HN: Nudge – Free, open-source Mac window manager

https://nudge.run/
1•mikusnuz•38m ago•0 comments

UK Car Bingo – Trainspotting for Cars

https://chrispattle.com/uk-car-bingo
1•pattle•41m ago•0 comments

The Guinndex – Pint Prices Across Ireland

https://guinndex.ai
1•futurecat•43m ago•0 comments

Israeli Air Force major charged [..] classified info to place bets on Polymarket

https://www.timesofisrael.com/israeli-air-force-major-charged-with-using-classified-info-to-place...
2•defly•46m ago•0 comments

Mastodon Stories for Systemd v260

https://0pointer.net/blog/mastodon-stories-for-systemd-v260.html
1•mfrw•47m ago•0 comments

Undergraduation (2005)

https://www.paulgraham.com/college.html
1•chistev•48m ago•0 comments