Skip to content
Snippets Groups Projects
Commit bd4fe62f authored by Jakhes's avatar Jakhes
Browse files

Changing absolute path to relative path

parent 59fc394d
Branches
No related tags found
No related merge requests found
# ignore All files in ANY directory named .vscode # ignore All files in ANY directory named .vscode
.vscode/ .vscode/
.project
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
%% needed for using the array type and for reading from csv %% needed for using the array type and for reading from csv
:- use_module(library(structs)). :- use_module(library(structs)).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
%% type definitions for the float array %% type definitions for the float array
:- foreign_type :- foreign_type
......
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
%%:- compile(bayesian_linear_regression). %%:- compile(bayesian_linear_regression).
:- use_module(bayesian_linear_regression). :- use_module(bayesian_linear_regression).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
reset_Model :- reset_Model :-
initModel(1,0,50,0.0001). initModel(1,0,50,0.0001).
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
%% needed for using the array type and for reading from csv %% needed for using the array type and for reading from csv
:- use_module(library(structs)). :- use_module(library(structs)).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
%% type definitions for the float array %% type definitions for the float array
:- foreign_type :- foreign_type
......
:- use_module(library(plunit)). :- use_module(library(plunit)).
:- use_module(linear_regression). :- use_module(linear_regression).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
reset_Model :- reset_Model :-
initModel(1,0,50,0.0001). initModel(1,0,50,0.0001).
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
%% needed for using the array type and for reading from csv %% needed for using the array type and for reading from csv
:- use_module(library(structs)). :- use_module(library(structs)).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
%% type definitions for the float array %% type definitions for the float array
:- foreign_type :- foreign_type
......
:- use_module(library(plunit)). :- use_module(library(plunit)).
:- use_module(new_method). :- use_module(new_method).
:- use_module('/home/afkjakhes/git/prolog-mlpack-libary/src/helper_files/helper'). :- use_module('../../helper_files/helper.pl').
reset_Model :- reset_Model :-
initModel(1,0,50,0.0001). initModel(1,0,50,0.0001).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment