Make some of the dependencies in library predicates explicit.
This commit is contained in:
parent
8e4bb51be0
commit
ce41ab9d33
@ -304,10 +304,10 @@
|
||||
:- use_module(library(charsio)).
|
||||
:- use_module(library(lists)).
|
||||
:- use_module(library(terms)).
|
||||
:- use_module(library(random)).
|
||||
:- use_module(library(random)). % PM doesn't seem to be used!
|
||||
:- use_module(library(system)).
|
||||
:- use_module(library(rbtrees)).
|
||||
:- use_module(library(ordsets)).
|
||||
:- use_module(library(rbtrees)). % PM doesn't seem to be used!
|
||||
:- use_module(library(ordsets), [list_to_ord_set/2, ord_insert/3, ord_union/3]).
|
||||
|
||||
% problog related modules
|
||||
:- use_module('problog/variables').
|
||||
|
@ -223,9 +223,9 @@
|
||||
:- yap_flag(unknown,error).
|
||||
|
||||
% load modules from the YAP library
|
||||
:- use_module(library(lists)).
|
||||
:- use_module(library(random)).
|
||||
:- use_module(library(system)).
|
||||
:- use_module(library(lists), [max_list/2, min_list/2, sum_list/2]).
|
||||
:- use_module(library(random)). % PM doesn't seem to be used!
|
||||
:- use_module(library(system), [delete_file/1, file_exists/1, shell/2]).
|
||||
|
||||
% load our own modules
|
||||
:- use_module(problog).
|
||||
|
Reference in New Issue
Block a user