This commit is contained in:
Vitor Santos Costa 2019-03-03 04:31:10 +00:00
parent 908cfe3b77
commit 5ec424645d
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
:- use_module(library(matrix)). :- use_module(library(matrix)).
:- use_module(('../problog_lbfgs')). :- use_module('../problog_learning').
%%%% %%%%
% background knowledge % background knowledge

View File

@ -220,7 +220,7 @@
:- use_module(library(system), [file_exists/1, shell/2]). :- use_module(library(system), [file_exists/1, shell/2]).
% load our own modules % load our own modules
:- use_module(problog). :- reexport(problog).
:- use_module('problog/logger'). :- use_module('problog/logger').
:- use_module('problog/flags'). :- use_module('problog/flags').
:- use_module('problog/os'). :- use_module('problog/os').
@ -1335,7 +1335,7 @@ lineSearch(Final_X,Final_Value) :-
line_search_evaluate_point(InitLeft,Value_InitLeft), line_search_evaluate_point(InitLeft,Value_InitLeft),
i Parameters=ls(A,B,InitLeft,InitRight,Value_A,Value_B,Value_InitLeft,Value_InitRight,1), Parameters=ls(A,B,InitLeft,InitRight,Value_A,Value_B,Value_InitLeft,Value_InitRight,1),
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% BEGIN BACK TRACKING %%%% BEGIN BACK TRACKING