File size: 1,023 Bytes
557a17a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
:-include('../Lucian-Academy/folders.pl').
:-include('mr_alg.pl').
:-include('../listprologinterpreter/la_strings.pl').
:-include('../listprologinterpreter/la_strings_string.pl').
:-include('../listprologinterpreter/la_files.pl').

% start with 1g memory

ya_phil_to_alg :-

folders(Courses1),
%random_member(Course,Courses1),
		%get_texts(Dept,Texts) :-

findall(Texts1,(member(Dept,Courses1),	concat_list(["../Lucian-Academy/",Dept,"/"],Dept1),
	directory_files(Dept1,F),
	delete_invisibles_etc(F,G),
	findall(String02b,(member(Filex1,G),
	string_concat(Dept1,Filex1,Filex),
		phrase_from_file_s(string(String00a), Filex),
		string_codes(String02b,String00a)),Texts1)
		),Texts2),

flatten(Texts2,Texts3),

term_to_atom(Texts3,Texts4),

split_string(Texts4,"\n\r","\n\r",Texts5),

findall([Text6,Alg],(member(Text6,Texts5),
mr_alg(Alg)),Algs1),

flatten(Algs1,Algs2),

term_to_atom(Algs2,Algs3),

%string_atom(Algs,Algs),

	(open_s("yet_more_phil_algs.txt",write,Stream3),
	write(Stream3,Algs3),
	close(Stream3)),!.