I have a theory file that does not much more than
imports Main "HOL-Probability.PMF_Impl"
only a definition and some comments and texts, but my Isabelle keeps using a lot of memory and reaches ML Cleanup every few seconds.
I restarted my Ubuntu, to the same effect. What this could be?
Your computer is not strong enough to withstand our tough Isabelle. :wink:
Seriously, perhaps HOL-Probability
is resource-hungry. Your basing your work on HOL, I guess, for which you then use the pre-built heap, but HOL-Probability.PMF_Impl
and everything outside HOL
it depends on has to be processed in your current session.
to elaborate on @Wolfgang Jeltsch 's answer, you might benefit from using a suitable heap here, e.g., starting Isabelle with:
isabelle jedit -l XXX foo.thy
where XXX
is HOL-Probability
or maybe something further down the line from the AFP
Thanks, @Yong Kiam , this solved my problem. And indeed, HOL-Probability is a large development which calls the even larger HOL-Analysis library.
Gergely Buday said:
And indeed, HOL-Probability is a large development which calls the even larger HOL-Analysis library.
Well, then it’s clear: HOL-Analysis
is a huge thing. When using it in one small development, I was always working with Isabelle/jEdit’s default heap set to HOL-Analysis
instead of HOL
.
Last updated: Dec 30 2024 at 16:22 UTC