AndrasKovacs/elaboration-zoo

checkSolution, should meta solution be checked?

atennapel opened this issue · 2 comments

In checkSolution (

Meta m' -> when (m == m') $
) the type to be checked is quoted but the meta solutions are not inlined (no zonking). That makes the assumption that all meta solution in the type are valid for the meta we are trying to solve. Is this assumption valid?

Metas are unfolded in quoting. The force does it in this line.

Aah of course, thanks.