The HOL theory library in the Isabelle documentation page goes to a list of sessions.
Let's say I am looking for the Finite_Map theory. How am I supposed to know that it's part of the HOL-Probability session?
The only way I have found to find documentation is google online and grep locally. This surfaces stuff, but in isolated patches that don't allow me to get any idea of a bigger picture.
Am I missing something?
Finite_Map is in HOL-Library, not HOL-Probability
and Isabelle has no policy to move things one at a time. So when "library"-like version enters HOL it is usually with everything in it
You can see it in the AFP with the number of _More
theories
Huh... When I googled for Finite_Map, the result I got was in session HOL-Probability: HOL-Probability/HOL-Library.Finite_Map. I see now:
OK, so this all together hints at how to navigate sessions and search results a bit better... thank you.
The issue is that an Isabelle session can only be built on top of one other session
Until recently: you would usually pick the most important (slowest) one to avoid recompiling it each time you start the development
(now you can declare in the ROOT file that some sessions should be known, so you do not have to recompile them each time... but it is not really merging several sessions and has weird side effects like you saw on Finite_Map)
Last updated: Aug 13 2025 at 08:30 UTC