| 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2 | % |
|---|
| 3 | % Logtalk - Object oriented extension to Prolog |
|---|
| 4 | % Release 2.9.0 |
|---|
| 5 | % |
|---|
| 6 | % configuration file for B-Prolog 4.0, 5.0 |
|---|
| 7 | % |
|---|
| 8 | % last updated: August 24, 2000 |
|---|
| 9 | % |
|---|
| 10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 16 | % |
|---|
| 17 | % ISO Prolog Standard predicates that we must define because they are |
|---|
| 18 | % not built-in |
|---|
| 19 | % |
|---|
| 20 | % add a clause for lgt_iso_predicate/1 declaring each ISO predicate that |
|---|
| 21 | % we must define; there must be at least one clause for this predicate |
|---|
| 22 | % whose call should fail if we don't define any ISO predicates |
|---|
| 23 | % |
|---|
| 24 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | % lgt_iso_predicate(?callable). |
|---|
| 28 | |
|---|
| 29 | lgt_iso_predicate(_) :- |
|---|
| 30 | fail. |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 35 | % |
|---|
| 36 | % predicate properties |
|---|
| 37 | % |
|---|
| 38 | % this predicate must return at least static, dynamic and built_in |
|---|
| 39 | % properties for an existing predicate |
|---|
| 40 | % |
|---|
| 41 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | % lgt_predicate_property(+callable, ?predicate_property) |
|---|
| 45 | |
|---|
| 46 | lgt_predicate_property(Pred, dynamic) :- |
|---|
| 47 | predicate_property(Pred, interpreted). |
|---|
| 48 | |
|---|
| 49 | lgt_predicate_property(Pred, static) :- |
|---|
| 50 | predicate_property(Pred, compiled). |
|---|
| 51 | |
|---|
| 52 | lgt_predicate_property(Pred, built_in) :- |
|---|
| 53 | predicate_property(Pred, _), |
|---|
| 54 | functor(Pred, Functor, Arity), |
|---|
| 55 | predefined(Functor, Arity). |
|---|
| 56 | |
|---|
| 57 | lgt_predicate_property(Pred, Prop) :- |
|---|
| 58 | predicate_property(Pred, Prop). |
|---|
| 59 | |
|---|
| 60 | |
|---|
| 61 | |
|---|
| 62 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 63 | % |
|---|
| 64 | % metapredicates |
|---|
| 65 | % |
|---|
| 66 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 67 | |
|---|
| 68 | |
|---|
| 69 | % forall(+callable, +callble) |
|---|
| 70 | |
|---|
| 71 | forall(Generate, Test) :- |
|---|
| 72 | \+ call((Generate, \+ call(Test))). |
|---|
| 73 | |
|---|
| 74 | |
|---|
| 75 | % lgt_call/2-8 |
|---|
| 76 | % |
|---|
| 77 | % use these definitions only if your compiler does |
|---|
| 78 | % not provide call/1-8 as built-in predicates |
|---|
| 79 | |
|---|
| 80 | lgt_call(F, A) :- |
|---|
| 81 | Call =.. [F, A], |
|---|
| 82 | call(Call). |
|---|
| 83 | |
|---|
| 84 | |
|---|
| 85 | lgt_call(F, A1, A2) :- |
|---|
| 86 | Call =.. [F, A1, A2], |
|---|
| 87 | call(Call). |
|---|
| 88 | |
|---|
| 89 | |
|---|
| 90 | lgt_call(F, A1, A2, A3) :- |
|---|
| 91 | Call =.. [F, A1, A2, A3], |
|---|
| 92 | call(Call). |
|---|
| 93 | |
|---|
| 94 | |
|---|
| 95 | lgt_call(F, A1, A2, A3, A4) :- |
|---|
| 96 | Call =.. [F, A1, A2, A3, A4], |
|---|
| 97 | call(Call). |
|---|
| 98 | |
|---|
| 99 | |
|---|
| 100 | lgt_call(F, A1, A2, A3, A4, A5) :- |
|---|
| 101 | Call =.. [F, A1, A2, A3, A4, A5], |
|---|
| 102 | call(Call). |
|---|
| 103 | |
|---|
| 104 | |
|---|
| 105 | lgt_call(F, A1, A2, A3, A4, A5, A6) :- |
|---|
| 106 | Call =.. [F, A1, A2, A3, A4, A5, A6], |
|---|
| 107 | call(Call). |
|---|
| 108 | |
|---|
| 109 | |
|---|
| 110 | lgt_call(F, A1, A2, A3, A4, A5, A6, A7) :- |
|---|
| 111 | Call =.. [F, A1, A2, A3, A4, A5, A6, A7], |
|---|
| 112 | call(Call). |
|---|
| 113 | |
|---|
| 114 | |
|---|
| 115 | % lgt_once/2-8 |
|---|
| 116 | % |
|---|
| 117 | % if your compiler provides call/1-8 as built-in |
|---|
| 118 | % predicates rewrite these definitions using call(...), !. |
|---|
| 119 | |
|---|
| 120 | lgt_once(F, A) :- |
|---|
| 121 | Call =.. [F, A], |
|---|
| 122 | once(Call). |
|---|
| 123 | |
|---|
| 124 | |
|---|
| 125 | lgt_once(F, A1, A2) :- |
|---|
| 126 | Call =.. [F, A1, A2], |
|---|
| 127 | once(Call). |
|---|
| 128 | |
|---|
| 129 | |
|---|
| 130 | lgt_once(F, A1, A2, A3) :- |
|---|
| 131 | Call =.. [F, A1, A2, A3], |
|---|
| 132 | once(Call). |
|---|
| 133 | |
|---|
| 134 | |
|---|
| 135 | lgt_once(F, A1, A2, A3, A4) :- |
|---|
| 136 | Call =.. [F, A1, A2, A3, A4], |
|---|
| 137 | once(Call). |
|---|
| 138 | |
|---|
| 139 | |
|---|
| 140 | lgt_once(F, A1, A2, A3, A4, A5) :- |
|---|
| 141 | Call =.. [F, A1, A2, A3, A4, A5], |
|---|
| 142 | once(Call). |
|---|
| 143 | |
|---|
| 144 | |
|---|
| 145 | lgt_once(F, A1, A2, A3, A4, A5, A6) :- |
|---|
| 146 | Call =.. [F, A1, A2, A3, A4, A5, A6], |
|---|
| 147 | once(Call). |
|---|
| 148 | |
|---|
| 149 | |
|---|
| 150 | lgt_once(F, A1, A2, A3, A4, A5, A6, A7) :- |
|---|
| 151 | Call =.. [F, A1, A2, A3, A4, A5, A6, A7], |
|---|
| 152 | once(Call). |
|---|
| 153 | |
|---|
| 154 | |
|---|
| 155 | |
|---|
| 156 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 157 | % |
|---|
| 158 | % file extension predicates |
|---|
| 159 | % |
|---|
| 160 | % these extensions are used by Logtalk load/compile predicates |
|---|
| 161 | % |
|---|
| 162 | % you may want to change the extension for Prolog files to match |
|---|
| 163 | % the one expected by your Prolog compiler |
|---|
| 164 | % |
|---|
| 165 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 166 | |
|---|
| 167 | |
|---|
| 168 | % lgt_file_extension(?atom, ?atom) |
|---|
| 169 | |
|---|
| 170 | lgt_file_extension(logtalk, '.lgt'). |
|---|
| 171 | lgt_file_extension(prolog, '.pl'). |
|---|
| 172 | lgt_file_extension(xml, '.xml'). |
|---|
| 173 | |
|---|
| 174 | |
|---|
| 175 | |
|---|
| 176 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 177 | % |
|---|
| 178 | % default compiler options |
|---|
| 179 | % |
|---|
| 180 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 181 | |
|---|
| 182 | |
|---|
| 183 | % lgt_default_compiler_option(?atom, ?atom) |
|---|
| 184 | % |
|---|
| 185 | % default values for all compiler options |
|---|
| 186 | |
|---|
| 187 | lgt_default_compiler_option(iso_initialization_dir, true). |
|---|
| 188 | |
|---|
| 189 | lgt_default_compiler_option(xml, on). |
|---|
| 190 | lgt_default_compiler_option(xsl, 'lgtxml.xsl'). |
|---|
| 191 | |
|---|
| 192 | lgt_default_compiler_option(unknown, warning). |
|---|
| 193 | lgt_default_compiler_option(misspelt, warning). |
|---|
| 194 | lgt_default_compiler_option(singletons, warning). |
|---|
| 195 | lgt_default_compiler_option(lgtredef, warning). |
|---|
| 196 | lgt_default_compiler_option(plredef, silent). |
|---|
| 197 | |
|---|
| 198 | lgt_default_compiler_option(report, on). |
|---|
| 199 | |
|---|
| 200 | |
|---|
| 201 | |
|---|
| 202 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 203 | % |
|---|
| 204 | % list predicates |
|---|
| 205 | % |
|---|
| 206 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 207 | |
|---|
| 208 | |
|---|
| 209 | lgt_append(List1, List2, List3) :- |
|---|
| 210 | append(List1, List2, List3). |
|---|
| 211 | |
|---|
| 212 | |
|---|
| 213 | lgt_member(Element, List) :- |
|---|
| 214 | member(Element, List). |
|---|
| 215 | |
|---|
| 216 | |
|---|
| 217 | lgt_member_var(V, [H| _]) :- |
|---|
| 218 | V == H. |
|---|
| 219 | lgt_member_var(V, [_| T]) :- |
|---|
| 220 | lgt_member_var(V, T). |
|---|
| 221 | |
|---|
| 222 | |
|---|
| 223 | lgt_proper_list([]). |
|---|
| 224 | lgt_proper_list([_| List]) :- |
|---|
| 225 | lgt_proper_list(List). |
|---|
| 226 | |
|---|
| 227 | |
|---|
| 228 | |
|---|
| 229 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 230 | % |
|---|
| 231 | % file predicates |
|---|
| 232 | % |
|---|
| 233 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 234 | |
|---|
| 235 | |
|---|
| 236 | % lgt_file_exists(+atom) |
|---|
| 237 | % |
|---|
| 238 | % see if a file exist in the current directory |
|---|
| 239 | |
|---|
| 240 | lgt_file_exists(File) :- |
|---|
| 241 | exists(File). |
|---|
| 242 | |
|---|
| 243 | |
|---|
| 244 | % lgt_load_prolog_code(+atom) |
|---|
| 245 | % |
|---|
| 246 | % compile and load a Prolog file |
|---|
| 247 | |
|---|
| 248 | lgt_load_prolog_code(File) :- |
|---|
| 249 | compile(File), |
|---|
| 250 | load(File). |
|---|
| 251 | |
|---|
| 252 | |
|---|
| 253 | |
|---|
| 254 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 255 | % |
|---|
| 256 | % sorting predicates |
|---|
| 257 | % |
|---|
| 258 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 259 | |
|---|
| 260 | |
|---|
| 261 | % lgt_keysort(+list, -list) |
|---|
| 262 | |
|---|
| 263 | lgt_keysort(List, Sorted) :- |
|---|
| 264 | keysort(List, Sorted). |
|---|
| 265 | |
|---|
| 266 | |
|---|
| 267 | % lgt_sort(+list, -list) |
|---|
| 268 | |
|---|
| 269 | lgt_sort(List, Sorted) :- |
|---|
| 270 | sort(List, Sorted). |
|---|
| 271 | |
|---|
| 272 | |
|---|
| 273 | |
|---|
| 274 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 275 | % |
|---|
| 276 | % time and date predicates |
|---|
| 277 | % |
|---|
| 278 | % if your Prolog compiler does not provide access to the operating system |
|---|
| 279 | % time and date just write dummy definitions |
|---|
| 280 | % |
|---|
| 281 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 282 | |
|---|
| 283 | |
|---|
| 284 | % lgt_current_date(?Year, ?Month, ?Day) |
|---|
| 285 | |
|---|
| 286 | lgt_current_date(22, 11, 99). |
|---|
| 287 | |
|---|
| 288 | |
|---|
| 289 | % lgt_current_time(?Hours, ?Mins, ?Secs) |
|---|
| 290 | |
|---|
| 291 | lgt_current_time(0, 0, 0). |
|---|
| 292 | |
|---|
| 293 | |
|---|
| 294 | |
|---|
| 295 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 296 | % |
|---|
| 297 | % timing predicate |
|---|
| 298 | % |
|---|
| 299 | % if your Prolog compiler does not provide access to a timing predicate |
|---|
| 300 | % just write dummy definition |
|---|
| 301 | % |
|---|
| 302 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 303 | |
|---|
| 304 | |
|---|
| 305 | % lgt_cpu_time(-Seconds) |
|---|
| 306 | |
|---|
| 307 | lgt_cpu_time(Seconds) :- |
|---|
| 308 | cputime(Miliseconds), |
|---|
| 309 | Seconds is Miliseconds / 1000 . |
|---|
| 310 | |
|---|
| 311 | |
|---|
| 312 | |
|---|
| 313 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 314 | % |
|---|
| 315 | % comparison predicate |
|---|
| 316 | % |
|---|
| 317 | % the usual compare/3 definition |
|---|
| 318 | % |
|---|
| 319 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 320 | |
|---|
| 321 | |
|---|
| 322 | % compare(?atom, @term, @term) -- built-in |
|---|
| 323 | |
|---|
| 324 | |
|---|
| 325 | |
|---|
| 326 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 327 | % |
|---|
| 328 | % end! |
|---|
| 329 | % |
|---|
| 330 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|