UNPKG

@ciao-lang/ts-ciao-interface

Version:

Simple Ciao interface for node.

78 lines 26.4 kB
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta name="theme-color" content="#273f79"/><link rel="stylesheet" href="lpdoc.css" type="text/css"/><script type="text/javascript" src="lpdoc.js"></script><title>Incremental analysis (low level) &mdash; The CiaoPP Program Processor v1.5</title></head><body><div class="lpdoc-page fixleftbar"><a href="#" id="sidebar-toggle-button" class="lpdoc-navbutton"><span id="sidebar-button-arrow">&#9776;</span></a><div id="sidebar" class="lpdoc-sidebar"><div style="height: 40px; margin-left: auto; margin-right: auto"><img src="ciao-logo_autofig.png" width=auto height=100%></div><div class="lpdoc-nav"><span class="lpdoc-on-right"><a class="lpdoc-navbutton" href="incanal.html">&#x2191;</a><a class="lpdoc-navbutton" href="incanal.html">&#x2190;</a><a class="lpdoc-navbutton" href="incanal_deletion.html">&#x2192;</a><a class="lpdoc-navbutton" href="ciaopp_ref_mansearch.html">&#x1F50D;</a></span><span><a href="ciaopp_ref_manfulltoc.html">TOC</a></span></div><hr></hr><ul class="lpdoc-itemize-sectpath"><li><a href="ciaopp_ref_man.html">The CiaoPP Program Processor</a> &raquo;<br/> </li><li><a href="part_internals.html">PART IV - CiaoPP Internals</a> &raquo;<br/> </li><li><a href="incanal.html">Incremental analysis (high level)</a> &raquo;<br/> </li><li><a href=""><strong>Incremental analysis (low level)</strong></a></li></ul><hr></hr><em>ON THIS PAGE</em><ul><li><a href="#Usage and interface">Usage and interface</a></li><li><a href="#Documentation on exports">Documentation on exports</a></li><li><a href="#Documentation on imports">Documentation on imports</a></li></ul></div><div class="lpdoc-main"><div id=""><h1>Incremental analysis (low level)</h1><a class="lpdoc-idx-anchor" href="ciaopp_ref_mansearch.html#incanal_driver"></a> <strong>Author(s):</strong> <a class="lpdoc-idx-anchor" id="Isabel Garcia-Contreras" href="ciaopp_ref_mansearch.html#Isabel Garcia-Contreras">Isabel Garcia-Contreras (ported from ciaopp-0.8)</a>.<p> This module contains the basic operations for adding or removing clauses to ciaopp (currently working for fixpoint dd) and perform an incremental reanalysis.<p>The posible actions are: <ul> <p><li>Initialize ciaopp for incremental analysis (see <a class="lpdoc-idx-anchor" id="0" href="ciaopp_ref_mansearch.html#init_empty_inc_analysis"><tt>init_empty_inc_analysis</tt></a>), for clauses to be added/removed from, they should be implemented in a file passed to this predicate.<p><li>Add clauses to analysis (see <a class="lpdoc-idx-anchor" id="1" href="#td_add_clauses/2"><tt>td_add_clauses/2</tt></a>). Adds clauses and performs top down reanalysis.<p><li>Remove clauses from analysis, following a top down strategy (see <a class="lpdoc-idx-anchor" id="2" href="#td_delete_clauses/2"><tt>td_delete_clauses/2</tt></a>). Removes clauses and performs top down reanalysis.<p><li>Remove clauses from analysis, following a bottom up strategy (see <a class="lpdoc-idx-anchor" id="3" href="#bu_delete_clauses/2"><tt>bu_delete_clauses/2</tt></a>). Removes clauses and reanalyzes according to the strategy defined.<p></ul><br/><div id="Usage and interface"><h2>Usage and interface</h2><div class="lpdoc-cartouche"><ul><li><strong>Library usage:</strong><br/><tt>:- use_module(ciaopp(plai/incanal/incanal_driver)).</tt><li><strong>Exports:</strong><br/><ul class="lpdoc-itemize-minus"><li><em>Predicates:</em><br/><a class="lpdoc-idx-anchor" id="4" href="#init_empty_inc_analysis/0"><tt>init_empty_inc_analysis/0</tt></a>, <a class="lpdoc-idx-anchor" id="5" href="#init_file_inc_analysis/3"><tt>init_file_inc_analysis/3</tt></a>, <a class="lpdoc-idx-anchor" id="6" href="#td_add_clauses/2"><tt>td_add_clauses/2</tt></a>, <a class="lpdoc-idx-anchor" id="7" href="#td_delete_clauses/2"><tt>td_delete_clauses/2</tt></a>, <a class="lpdoc-idx-anchor" id="8" href="#bu_delete_clauses/2"><tt>bu_delete_clauses/2</tt></a>, <a class="lpdoc-idx-anchor" id="9" href="#td_rec_delete_complete/3"><tt>td_rec_delete_complete/3</tt></a>, <a class="lpdoc-idx-anchor" id="10" href="#module_has_entries/1"><tt>module_has_entries/1</tt></a>, <a class="lpdoc-idx-anchor" id="11" href="#remove_useless_completes/1"><tt>remove_useless_completes/1</tt></a>, <a class="lpdoc-idx-anchor" id="12" href="#run_inc_fixpoint/1"><tt>run_inc_fixpoint/1</tt></a>, <a class="lpdoc-idx-anchor" id="13" href="#incrementally_update_analysis/2"><tt>incrementally_update_analysis/2</tt></a>, <a class="lpdoc-idx-anchor" id="14" href="#process_external_complete_change/6"><tt>process_external_complete_change/6</tt></a>. </ul></ul></div></div><div id="Documentation on exports"><h2>Documentation on exports</h2><div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="init_empty_inc_analysis/0" href="ciaopp_ref_mansearch.html#init_empty_inc_analysis/0">init_empty_inc_analysis/0</a></div><div class="lpdoc-deftext">Initializes ciaopp for incremental analysis. <strong>Removes all previous analysis info</strong>.</div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="init_file_inc_analysis/3" href="ciaopp_ref_mansearch.html#init_file_inc_analysis/3">init_file_inc_analysis/3</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>init_file_inc_analysis(Files,Cls,Ds)</tt> </span><p>Initializes incremental analysis with a file.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="15" href="basic_props.html#list/1"><tt>list/1</tt></a>)</span><span><span class="lpdoc-var">Files</span> is a list. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="td_add_clauses/2" href="ciaopp_ref_mansearch.html#td_add_clauses/2">td_add_clauses/2</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>td_add_clauses(ClKeys,AbsInt)</tt> </span><p>Adds a list of already processed clauses, expressed with their clause id (<span class="lpdoc-var">ClKeys</span>) to the code database and updates the analysis of abstract domain <span class="lpdoc-var">AbsInt</span> with them.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="16" href="basic_props.html#list/1"><tt>list/1</tt></a>)</span><span><span class="lpdoc-var">ClKeys</span> is a list. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="17" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is an atom. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="18" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">td_add_clauses(ClKeys,AbsInt)</span> do not fail. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="19" href="native_props_nfdet_doc.html#is_det/1"><tt>is_det/1</tt></a>)</span><span>All calls of the form <span class="lpdoc-var">td_add_clauses(ClKeys,AbsInt)</span> are deterministic. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="td_delete_clauses/2" href="ciaopp_ref_mansearch.html#td_delete_clauses/2">td_delete_clauses/2</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>td_delete_clauses(ClKeys,AbsInt)</tt> </span><p>Removes clauses with ids of list <span class="lpdoc-var">ClKeys</span> for abstract domain <span class="lpdoc-var">AbsInt</span> from analysis using top-down deletion strategy and performs a reanalysis.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="20" href="basic_props.html#list/1"><tt>list/1</tt></a>)</span><span><span class="lpdoc-var">ClKeys</span> is a list. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="21" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is an atom. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="22" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">td_delete_clauses(ClKeys,AbsInt)</span> do not fail. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="23" href="native_props_nfdet_doc.html#is_det/1"><tt>is_det/1</tt></a>)</span><span>All calls of the form <span class="lpdoc-var">td_delete_clauses(ClKeys,AbsInt)</span> are deterministic. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="bu_delete_clauses/2" href="ciaopp_ref_mansearch.html#bu_delete_clauses/2">bu_delete_clauses/2</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>bu_delete_clauses(ClKeys,AbsInt)</tt> </span><p>Removes clauses <span class="lpdoc-var">Cls</span> for abstract domain <span class="lpdoc-var">AbsInt</span> from analysis using the bottom up deletion strategy and performs a reanalysis.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="24" href="basic_props.html#list/1"><tt>list/1</tt></a>)</span><span><span class="lpdoc-var">ClKeys</span> is a list. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="25" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is an atom. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="26" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">bu_delete_clauses(ClKeys,AbsInt)</span> do not fail. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="27" href="native_props_nfdet_doc.html#is_det/1"><tt>is_det/1</tt></a>)</span><span>All calls of the form <span class="lpdoc-var">bu_delete_clauses(ClKeys,AbsInt)</span> are deterministic. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="td_rec_delete_complete/3" href="ciaopp_ref_mansearch.html#td_rec_delete_complete/3">td_rec_delete_complete/3</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>td_rec_delete_complete(Id,Key,AbsInt)</tt> </span><p>This predicate removes the complete with <span class="lpdoc-var">Id</span> in domain <span class="lpdoc-var">AbsInt</span> and all its dependent information</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="28" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">Id</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="29" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="31" href="plai_db.html#plai_db_id/1"><tt>plai_db_id/1</tt></a>)</span><span><a class="lpdoc-idx-anchor" id="30" href="ciaopp_ref_mansearch.html#plai_db_id(Id)"><tt>plai_db_id(Id)</tt></a> </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="32" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is an atom. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="33" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">td_rec_delete_complete(Id,Key,AbsInt)</span> do not fail. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="module_has_entries/1" href="ciaopp_ref_mansearch.html#module_has_entries/1">module_has_entries/1</a></div><div class="lpdoc-deftext">No further documentation available for this predicate.</div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="remove_useless_completes/1" href="ciaopp_ref_mansearch.html#remove_useless_completes/1">remove_useless_completes/1</a></div><div class="lpdoc-deftext">No further documentation available for this predicate.</div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="run_inc_fixpoint/1" href="ciaopp_ref_mansearch.html#run_inc_fixpoint/1">run_inc_fixpoint/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>run_inc_fixpoint(AbsInt)</tt> </span><p>This predicate runs fixpoint for abstract domain <span class="lpdoc-var">AbsInt</span>. It should to be run after adding information from registry files in intermodular analysis.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="34" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is currently a term which is not a free variable. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="35" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">run_inc_fixpoint(AbsInt)</span> do not fail. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="36" href="native_props_nfdet_doc.html#is_det/1"><tt>is_det/1</tt></a>)</span><span>All calls of the form <span class="lpdoc-var">run_inc_fixpoint(AbsInt)</span> are deterministic. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="incrementally_update_analysis/2" href="ciaopp_ref_mansearch.html#incrementally_update_analysis/2">incrementally_update_analysis/2</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>incrementally_update_analysis(Mod,AbsInt)</tt> </span><p><span class="lpdoc-var">Mod</span> is the module that will be reanalyzed after updating its external completes. To be called in modular analysis, no following analysis needed. This is a top-down strategy update</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="37" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">Mod</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="38" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is currently a term which is not a free variable. </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="39" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">incrementally_update_analysis(Mod,AbsInt)</span> do not fail. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="40" href="native_props_nfdet_doc.html#is_det/1"><tt>is_det/1</tt></a>)</span><span>All calls of the form <span class="lpdoc-var">incrementally_update_analysis(Mod,AbsInt)</span> are deterministic. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="process_external_complete_change/6" href="ciaopp_ref_mansearch.html#process_external_complete_change/6">process_external_complete_change/6</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>process_external_complete_change(AbsInt,NewPrime,SgKey,Sg,Id,Proj)</tt> </span><p>This predicate updates analysis information given a complete that has changed externally. Typically this is used for updating completes that are outdated as a consequence of modular analysis (the analysis of a module was improved). The complete that has change has key <span class="lpdoc-var">SgKey</span> and id <span class="lpdoc-var">Id</span>. The new answer for the complete is <span class="lpdoc-var">NewPrime</span> and refers to domain <span class="lpdoc-var">AbsInt</span>.<p>Changes in answers are updated as follows:<p><ul> <p><li>If the new answer is more general than the previous one, the update is as simple as replacing the answer in the complete and adding an event.<p><li>If the new answer is more specific or incompatible, the information that depends on it has to be deleted and recomputed. We are removing the information with a top-down deletion strategy, although a bottom-up deletion strategy could more efficient. The fixpoint has to be runned after this deletion.<p></ul> </p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="41" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="42" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">NewPrime</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="43" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">SgKey</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="44" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">Sg</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="45" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">Id</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="46" href="ciaopp_ref_mansearch.html#nonvar/1"><tt>nonvar/1</tt></a>)</span><span><span class="lpdoc-var">Proj</span> is currently a term which is not a free variable. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="47" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">AbsInt</span> is an atom. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="48" href="basic_props.html#list/1"><tt>list/1</tt></a>)</span><span><span class="lpdoc-var">NewPrime</span> is a list. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="49" href="basic_props.html#atm/1"><tt>atm/1</tt></a>)</span><span><span class="lpdoc-var">SgKey</span> is an atom. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="51" href="plai_db.html#plai_db_id/1"><tt>plai_db_id/1</tt></a>)</span><span><a class="lpdoc-idx-anchor" id="50" href="ciaopp_ref_mansearch.html#plai_db_id(Id)"><tt>plai_db_id(Id)</tt></a> </span> <li><em>The following properties should hold globally:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="52" href="native_props_nfdet_doc.html#not_fails/1"><tt>not_fails/1</tt></a>)</span><span>All the calls of the form <span class="lpdoc-var">process_external_complete_change(AbsInt,NewPrime,SgKey,Sg,Id,Proj)</span> do not fail. </span> </ul></div></div><p> </div><div id="Documentation on imports"><h2>Documentation on imports</h2>This module has the following direct dependencies:<ul class="lpdoc-itemize-minus"><li><em>Application modules:</em><br/><a class="lpdoc-idx-anchor" id="53" href="fixpo_dd.html"><tt>fixpo_dd</tt></a>, <a class="lpdoc-idx-anchor" id="54" href="ciaopp_ref_mansearch.html#fixpo_ops"><tt>fixpo_ops</tt></a>, <a class="lpdoc-idx-anchor" id="55" href="ciaopp_ref_mansearch.html#transform"><tt>transform</tt></a>, <a class="lpdoc-idx-anchor" id="56" href="domains.html"><tt>domains</tt></a>, <a class="lpdoc-idx-anchor" id="57" href="ciaopp_ref_mansearch.html#tarjan"><tt>tarjan</tt></a>, <a class="lpdoc-idx-anchor" id="58" href="plai_db.html"><tt>plai_db</tt></a>, <a class="lpdoc-idx-anchor" id="59" href="plai.html"><tt>plai</tt></a>, <a class="lpdoc-idx-anchor" id="60" href="intermod_entry.html"><tt>intermod_entry</tt></a>, <a class="lpdoc-idx-anchor" id="61" href="ciaopp_ref_mansearch.html#intermod_ops"><tt>intermod_ops</tt></a>, <a class="lpdoc-idx-anchor" id="62" href="frontend_driver.html"><tt>frontend_driver</tt></a>, <a class="lpdoc-idx-anchor" id="63" href="analyze_driver.html"><tt>analyze_driver</tt></a>, <a class="lpdoc-idx-anchor" id="64" href="preprocess_flags.html"><tt>preprocess_flags</tt></a>, <a class="lpdoc-idx-anchor" id="65" href="ciaopp_ref_mansearch.html#analysis_stats"><tt>analysis_stats</tt></a>, <a class="lpdoc-idx-anchor" id="66" href="ciaopp_ref_mansearch.html#ciaopp_log"><tt>ciaopp_log</tt></a>, <a class="lpdoc-idx-anchor" id="67" href="ciaopp_ref_mansearch.html#p_dump"><tt>p_dump</tt></a>, <a class="lpdoc-idx-anchor" id="68" href="tarjan_inc.html"><tt>tarjan_inc</tt></a>, <a class="lpdoc-idx-anchor" id="69" href="ciaopp_ref_mansearch.html#plai_db_comparator"><tt>plai_db_comparator</tt></a>, <a class="lpdoc-idx-anchor" id="70" href="incanal_deletion.html"><tt>incanal_deletion</tt></a>, <a class="lpdoc-idx-anchor" id="71" href="incanal_db.html"><tt>incanal_db</tt></a>, <a class="lpdoc-idx-anchor" id="72" href="raw_printer.html"><tt>raw_printer</tt></a>. <li><em>System library modules:</em><br/><a class="lpdoc-idx-anchor" id="73" href="ciaopp_ref_mansearch.html#datafacts_rt"><tt>datafacts_rt</tt></a>, <a class="lpdoc-idx-anchor" id="74" href="ciaopp_ref_mansearch.html#native_props"><tt>native_props</tt></a>, <a class="lpdoc-idx-anchor" id="75" href="ciaopp_ref_mansearch.html#aggregates"><tt>aggregates</tt></a>, <a class="lpdoc-idx-anchor" id="76" href="ciaopp_ref_mansearch.html#lists"><tt>lists</tt></a>, <a class="lpdoc-idx-anchor" id="77" href="ciaopp_ref_mansearch.html#terms_vars"><tt>terms_vars</tt></a>, <a class="lpdoc-idx-anchor" id="78" href="ciaopp_ref_mansearch.html#sort"><tt>sort</tt></a>, <a class="lpdoc-idx-anchor" id="79" href="p_unit.html"><tt>p_unit</tt></a>, <a class="lpdoc-idx-anchor" id="80" href="program_keys.html"><tt>program_keys</tt></a>, <a class="lpdoc-idx-anchor" id="81" href="ciaopp_ref_mansearch.html#p_unit_db"><tt>p_unit_db</tt></a>. <li><em>Internal (engine) modules:</em><br/><a class="lpdoc-idx-anchor" id="82" href="ciaopp_ref_mansearch.html#term_basic"><tt>term_basic</tt></a>, <a class="lpdoc-idx-anchor" id="83" href="ciaopp_ref_mansearch.html#arithmetic"><tt>arithmetic</tt></a>, <a class="lpdoc-idx-anchor" id="84" href="ciaopp_ref_mansearch.html#atomic_basic"><tt>atomic_basic</tt></a>, <a class="lpdoc-idx-anchor" id="85" href="ciaopp_ref_mansearch.html#basiccontrol"><tt>basiccontrol</tt></a>, <a class="lpdoc-idx-anchor" id="86" href="ciaopp_ref_mansearch.html#exceptions"><tt>exceptions</tt></a>, <a class="lpdoc-idx-anchor" id="87" href="ciaopp_ref_mansearch.html#term_compare"><tt>term_compare</tt></a>, <a class="lpdoc-idx-anchor" id="88" href="ciaopp_ref_mansearch.html#term_typing"><tt>term_typing</tt></a>, <a class="lpdoc-idx-anchor" id="89" href="ciaopp_ref_mansearch.html#debugger_support"><tt>debugger_support</tt></a>, <a class="lpdoc-idx-anchor" id="90" href="basic_props.html"><tt>basic_props</tt></a>, <a class="lpdoc-idx-anchor" id="91" href="ciaopp_ref_mansearch.html#hiord_rt"><tt>hiord_rt</tt></a>, <a class="lpdoc-idx-anchor" id="92" href="ciaopp_ref_mansearch.html#runtime_control"><tt>runtime_control</tt></a>, <a class="lpdoc-idx-anchor" id="93" href="ciaopp_ref_mansearch.html#messages_basic"><tt>messages_basic</tt></a>. <li><em>Packages:</em><br/><a class="lpdoc-idx-anchor" id="94" href="ciaopp_ref_mansearch.html#prelude"><tt>prelude</tt></a>, <a class="lpdoc-idx-anchor" id="95" href="ciaopp_ref_mansearch.html#initial"><tt>initial</tt></a>, <a class="lpdoc-idx-anchor" id="96" href="ciaopp_ref_mansearch.html#condcomp"><tt>condcomp</tt></a>, <a class="lpdoc-idx-anchor" id="97" href="assertions_doc.html"><tt>assertions</tt></a>, <a class="lpdoc-idx-anchor" id="98" href="ciaopp_ref_mansearch.html#assertions/assertions_basic"><tt>assertions/assertions_basic</tt></a>, <a class="lpdoc-idx-anchor" id="99" href="ciaopp_ref_mansearch.html#isomodes"><tt>isomodes</tt></a>, <a class="lpdoc-idx-anchor" id="100" href="ciaopp_ref_mansearch.html#datafacts"><tt>datafacts</tt></a>, <a class="lpdoc-idx-anchor" id="101" href="ciaopp_ref_mansearch.html#nativeprops"><tt>nativeprops</tt></a>, <a class="lpdoc-idx-anchor" id="102" href="ciaopp_ref_mansearch.html#ciaopp(plai/notrace)"><tt>ciaopp(plai/notrace)</tt></a>. </ul></div></div><div class="lpdoc-footer">Generated with LPdoc using Ciao</div></div><div class="lpdoc-clearer"></div></div></body></html>