-
Notifications
You must be signed in to change notification settings - Fork 0
/
reading.notes
84 lines (76 loc) · 2.47 KB
/
reading.notes
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Reading List
-------------------------------------------
Past
Learn prolog now
Adventure in prolog
Logic Programming with Prolog, Max Bramer - 257/257
*Clause & Effect, Clocksin - 140/140
*Efficient Prolog - A Practical Guide
*Efficient Prolog Programming
Prolog The Language Compared With Lisp
ToBeContinued
...
Current
*Prolog Programming In Depth - 205/500
*Prolog Programming for AI , Bratko - 189/645
Programming in Prolog, Clocksin & Mellish - 30/300
*The Art Of Prolog, Sterling & Shapiro - 180/480
Pending
Craft Of Prolog, O'Keefe - 0/400
Simply Logical - 0/332
Logic For Problem Solving - 0/246
SICP
Agent Oriented Programming - 0/351
Logic Based AI - 0/591
Meta Programming in Logic - 0/364
Logic Based KR - 0/30
Expert Systems in Prolog
Natural Language Processing For Prolog Programmers
AI Algorithms, Data Structures and Idioms in Prolog, Lisp and Java
Algorithmics - The spirit of computing
AI - A modern Approach
Coding Guidelines For Prolog
Improving Prolog Programs - Refactoring For Prolog
Machine Learning, Meta Reasoning and Logics
Negation as Failure
Negation and Control In Prolog
Paradigms of AI Programming
Prolog for Software Engineers
Representing Knowledge In Prolog
The Algebra of Programming
The Science Of Programming
The Birth Of Prolog
The Wonder Years of Sequential Prolog Implementation
WAM Book
... plus a thousand more
Wish List/Maybes
A Logical Approach To Discrete Math
Advanced Prolog Techniques & Examples
Prolog by Example - Coelho & Cotta
From Logic Programming to Prolog
Applications of Prolog
Natural Language Processing Techniques in Prolog
Prolog and Natural Language Analysis
Prolog Experiments in Discrete Maths Logic and Computability
Prolog Techniques Applications of Prolog
The Practice of Prolog
AI Through Prolog
AI techniques in Prolog
Functional Grammar in Prolog
Computing iwth Logic
Functional GRammer In Prolog
Intelligence Image Processing in Prolog
Logic For Problem Sovling
Logic Programming and Prolog
Problem Solving with Prolog
Productive Prolog Programming
Prolog and it's Applications - A Japanese Perspective
Prolog By Examples
Prolog for Programmers
Techniques of Prolog Programming
Links
http://www.logic.at/prolog/
count_list([E], 0).
count_list([H|T], N):-
count_list(T, NT),
add(NT,1,N).