<div dir="ltr">Depending on how you construct your predicates, you may be able to capture their composition... And then serialise that.<div><br></div><div>For example:</div><div><br></div><div>If you were doing some sort of range intersection predicate construction ~</div><div><br></div><div>    R1 n R2 n R3</div><div><br></div><div>Could be represented as a list of those ranges [(l1,r1),(l2,r2),(l3,r3)]. Basically, instead of constructing a predicate function directly, you would assemble a data-structure representing the essence of the predicate, then convert that to both a function for evaluation, as well as a string for serialisation. This would also allow you to perform some "optimisation" before serialisation which could be fun.<br><div><br></div><div>Do you have some examples of what the predicates look like?</div><div><br></div><div><br></div><div> - Lyndon</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 23, 2015 at 8:55 PM, martin <span dir="ltr"><<a href="mailto:martin.drautzburg@web.de" target="_blank">martin.drautzburg@web.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello all,<br>
<br>
in my program, I do stuff with predicates (a->Bool). For the most part this representation is just fine, but at the very<br>
end I need to convert a resulting predicate into a String so I can write it to a file.<br>
<br>
Wenn I represent my predicates as Lists or Sets, then this is doable and I am tempted to do it this way. The only other<br>
option I could come up with was to have a representation of "everything", which would in my case be large (10^8) but<br>
finite. Then I could construct a List or a Set at the very end, as [x | x<-everything, p x] without having explicit sets<br>
in the intermediate steps.<br>
<br>
I cannot see any other option, but I thought I better ask.<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br></div>