frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

Generating Mazes with Inductive Graphs (2017)

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

Comments

tomfly•1y ago
where is the entrance and exit?
Jaxan•1y ago
Doesn’t matter, because all positions are reachable. So just pick any two positions at the border and remove a wall.
kazinator•1y 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•1y 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•1y 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•1y 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.

June heatwave may have killed around 20k people in Europe

https://www.newscientist.com/article/2532825-june-heatwave-may-have-killed-around-20000-people-in...
2•littlexsparkee•6m ago•0 comments

Show HN: Dabs spawns dumb agents in boxes for free

https://github.com/jjmerino/dabs
1•jjmerino•6m ago•0 comments

BitTorrent's disastrous, legendary, and controversial story

https://www.theverge.com/tech/959848/bittorrent-story-25-years-piracy
1•aarvin_roshin•7m ago•1 comments

In Defense of AI Mandates

https://charity.wtf/2026/07/02/in-defense-of-ai-mandates-xpost/
1•backlit4034•10m ago•0 comments

Show HN: Imagent – agentic image/video/speech generation

https://github.com/unliftedq/imagent
1•unliftedq•12m ago•0 comments

Spotify deletes streams of chart-topping song after suspicious Kalshi bets

https://www.ft.com/content/2e10851c-9f47-410d-b46e-2a617118b05a
2•thm•15m ago•0 comments

Qwicut – A Desktop App to Turn Any Selection into Intelligence

https://www.qwicut.com
1•yukidkwlbn•20m ago•0 comments

Reducing AI costs with smart pricing

1•millereffect•25m ago•0 comments

AI coding is a nightmare. Am I the only one experiencing this?

1•sollawen•26m ago•1 comments

Four graphs to visualize the unprecedented scale of France's June 2026 heatwave

https://www.lemonde.fr/en/les-decodeurs/article/2026/07/03/four-graphs-to-visualize-the-unprecede...
2•pier25•29m ago•0 comments

Stop Asking "Saga or 2PC." Start Asking What Each Operation Needs

https://medium.com/@pivotfakie/stop-asking-saga-or-2pc-start-asking-what-each-operation-needs-78c...
2•feeblefakie•29m ago•0 comments

Mr. Baby Paint and accidentally discovering a new cellular automata

https://tekstien-marginaalien-keskus.aalto.fi/residenssi/heikki/blog/004-december-2/
3•jfil•30m ago•0 comments

Micro Instrumentation and Telemetry Systems

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
2•BirAdam•33m ago•0 comments

California votes to ruin 3D printing right after voting to keep killing games [video]

https://www.youtube.com/watch?v=_GIigWnNRVg
6•givemeethekeys•40m ago•0 comments

Proving Claude Knows You by Your Code Style: Author2Vec

https://author2vec.com/
4•tristenharr•41m ago•1 comments

Ask HN: Is this type of writing is compelling, or over rated

3•Daniel-Pan•44m ago•2 comments

Fire and Coast Fire Tracker · Streamlit

3•Rossklot•45m ago•0 comments

U.S. Department of Energy Delivers Third Advanced Reactor Criticality

https://www.energy.gov/articles/us-department-energy-meets-president-trumps-goal-delivers-third-a...
5•simonpure•51m ago•0 comments

Moneyball for Physical AI

https://praxiscurrents.substack.com/p/moneyball-for-physical-ai
3•gmays•52m ago•0 comments

OpenUI: Open Standard for Generative UI

https://www.openui.com
2•handfuloflight•55m ago•0 comments

The delicious irony of Anthropic bemoaning distillation

https://twitter.com/ejzim/status/2072692694036660517
3•MrBuddyCasino•1h ago•0 comments

Lotus: Optimized Agentic and LLM Bulk Processing

https://github.com/lotus-data/lotus
2•handfuloflight•1h ago•0 comments

The end of paper retirement processing at the Office of Personnel Management

https://twitter.com/spikebrehm/status/2072422555101561154
4•MrBuddyCasino•1h ago•0 comments

Hackers On Planet Earth is back in Manhattan next month

https://www.hope.net/
3•fashiontechguru•1h ago•2 comments

GPT-5.5-Cyber built a zlib fuzzing lab in a day

https://blog.trailofbits.com/2026/07/02/field-reports-from-patch-the-planet/
2•wslh•1h ago•0 comments

Don't Train the Model, Evolve the Harness

https://huggingface.co/spaces/joelniklaus/harness-optimization
3•emersonmacro•1h ago•0 comments

Automated Accounting, Financial Reporting and Tax Management

https://maxint.com/blog/maxint-2-24-release
2•pcvetkovski•1h ago•0 comments

Trump's Windfall Has Few Known Global Precedents

https://www.nytimes.com/2026/07/02/world/europe/trump-world-leaders-corruption-wealth.html
3•Alien1Being•1h ago•0 comments

Ask HN: Once you make your money from vibe coding innumerable products, then?

2•keepamovin•1h ago•1 comments

Private Credit Keeps $14B Trapped in Bid to Outlast Storm

https://www.bloomberg.com/news/articles/2026-07-02/private-credit-keeps-14-billion-trapped-in-bid...
2•petethomas•1h ago•0 comments