<div dir="ltr">Thank you Zoltan and Fabrice. 
I just need to maintain (add and remove) facts before a query. This 
seems possible in Mercury through various data structures in the 
standard library. 

 I need to review Julien's fruitbowl example again. He used lists to permit compiled Mercury to behave in a way similar to redefining a predicate. However, I'm not sure how this is different than just using those same data structures directly in C#.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jan 20, 2022 at 7:24 PM Fabrice Nicol <<a href="mailto:fabrnicol@gmail.com">fabrnicol@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">David's question, to some extent, revolves around how much reflective <br>
programming can be done in Mercury and for what kind of uses.<br>
<br>
In Prolog, lists can be converted to predicates and vice-versa <br>
dynamically thanks to =.. ('univ'). Mercury's implementation of 'univ' <br>
can only be partial and limited to static introspection, which is <br>
supported to some extent by library predicates construct / deconstruct <br>
(see library/prolog.m and the comments there).<br>
<br>
The Mercury compiler code itself makes heavy use of these library <br>
predicates (have a look at mercury/library/rtti_implementation.m, for one).<br>
<br>
If you need to go beyond static introspection and make use of dynamic <br>
intercession, as I understand you will in an interactive app like an AI <br>
game, then you will be better off sticking with Prolog. SWI and Sicstus <br>
are the only two dialects I know of that have a C# interface.<br>
<br>
Fabrice<br>
<br>
<br>
_______________________________________________<br>
users mailing list<br>
<a href="mailto:users@lists.mercurylang.org" target="_blank">users@lists.mercurylang.org</a><br>
<a href="https://lists.mercurylang.org/listinfo/users" rel="noreferrer" target="_blank">https://lists.mercurylang.org/listinfo/users</a><br>
</blockquote></div>