File: bramsey.pl

package info (click to toggle)
gprolog 1.3.0-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 12,708 kB
  • ctags: 8,388
  • sloc: ansic: 57,431; perl: 16,620; sh: 5,900; makefile: 1,284
file content (204 lines) | stat: -rw-r--r-- 4,413 bytes parent folder | download | duplicates (6)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*-------------------------------------------------------------------------*/
/* Benchmark (Boolean)                                                     */
/*                                                                         */
/* Name           : bramsey.pl                                             */
/* Title          : ramsey problem                                         */
/* Original Source: Daniel Diaz - INRIA France                             */
/*                  Greg Sidebottom - University of Vancouver Canada       */
/* Adapted by     : Daniel Diaz for GNU Prolog                             */
/* Date           : September 1993                                         */
/*                                                                         */
/* Find a 3-colouring of a complete graph with N vertices such that there  */
/* is no monochrome triangles.                                             */
/*                                                                         */
/* The graph is a half-matrix of edges. Example N=5:                       */
/* Graph=m(v(e12),                                                         */
/*         v(e13, e23),                                                    */
/*         v(e14, e24, e34),                                               */
/*         v(e15, e25, e35, e45)) an edge eij is  3 colors [C3,C2,C1]      */
/* (resolution by line)                                                    */
/*                                                                         */
/* There is a solution up to N=16, none for N>=17.                         */
/* Solution:                                                               */
/* N=5                                                                     */
/* m(v([0,0,1]),                                                           */
/*   v([0,1,0],[0,0,1]),                                                   */
/*   v([0,1,0],[0,0,1],[1,0,0]),                                           */
/*   v([1,0,0],[0,0,1],[0,1,0],[0,1,0]))                                   */
/*-------------------------------------------------------------------------*/

q:-	write('N ?'), read_integer(N),
	statistics(runtime,_),
	ramsey(N,Graph), statistics(runtime,[_,Y]),
	write(Graph), nl,
	write('time : '), write(Y), nl.




ramsey(N,Mat):-
	adj(N,Mat),
	triangles(N,Mat,Tris),
	label(Tris).




triangles(N,Mat,Ts):-
	trianglesI(0,N,Mat,Ts,[]).




trianglesI(I1,N,Mat,Ts1,Ts):-
	I1 < N,
	!,
	I is I1 + 1,
	trianglesJI(I,I,N,Mat,Ts1,Ts2),
	trianglesI(I,N,Mat,Ts2,Ts).

trianglesI(N,N,_Mat,Ts,Ts).




trianglesJI(J1,I,N,Mat,Ts1,Ts):-
	J1 < N,
	!,
	J is J1 + 1,
	trianglesKJI(J,J,I,N,Mat,Ts1,Ts2),
	trianglesJI(J,I,N,Mat,Ts2,Ts).

trianglesJI(N,_I,N,_Mat,Ts,Ts).




trianglesKJI(K1,J,I,N,Mat,[EIJ,EJK,EKI|Ts1],Ts):-
	K1 < N,
	!,
	K is K1 + 1,
	edge(I,J,Mat,EIJ),
	edge(J,K,Mat,EJK),
	edge(I,K,Mat,EKI),
	polychrom(EIJ,EJK,EKI),
	trianglesKJI(K,J,I,N,Mat,Ts1,Ts).

trianglesKJI(N,_J,_I,N,_Mat,Ts,Ts).




polychrom([C13,C12,C11],[C23,C22,C21],[C33,C32,C31]):-
	#\ (C13 #/\ C23 #/\ C33),
	#\ (C12 #/\ C22 #/\ C32),
	#\ (C11 #/\ C21 #/\ C31).




% these interface to the tmat routines, the essentially map the matrix
% so the diagonal can be used

adj(N,Mat):-
	N1 is N - 1,
	tmat(N1,Mat).




% edge must be called with I < J
% could make more general so it swaps arguments if I > J

edge(I,J,Mat,EIJ):-
	J1 is J - 1,
	tmatRef(J1,I,Mat,EIJ),
	(var(EIJ) -> cstr_edge(EIJ)
	          ;  true).



tmat(N,Mat):-
	functor(Mat,m,N),
	tvecs(N,Mat).




tvecs(0,_Mat):-
	!.

tvecs(J,Mat):-
	arg(J,Mat,Vec),
	functor(Vec,v,J),
	J1 is J - 1,
	tvecs(J1,Mat).




% tmatRef must be called with I > J
% could make more general so it swaps arguments if I < J

tmatRef(I,J,Mat,MatIJ):-
	arg(I,Mat,MatI),
	arg(J,MatI,MatIJ).




label([]).

label([A,B,C|L]):-
	labeltri(A,B,C),
	label(L).




labeltri(A,B,C):-
	same_edge(A,B),
	fd_labeling(A),
	fd_labeling(C).

labeltri(A,B,C):-
	same_edge(A,C),
	fd_labeling(A),
	fd_labeling(B).

labeltri(A,B,C):-
	same_edge(B,C),
	fd_labeling(B),
	fd_labeling(A).

labeltri(A,B,C):-
	fd_labeling(C),
	diff_edge(A,C),
	diff_edge(B,C),
	fd_labeling(B),
	diff_edge(A,B).




same_edge(Edge,Edge).




diff_edge([C13,C12,C11],[C23,C22,C21]):-
	#\ (C13 #/\ C23),
	#\ (C12 #/\ C22),
	#\ (C11 #/\ C21).




cstr_edge(E):-
	E=[_,_,_],
	fd_only_one(E).




:- initialization(q).