You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
360 B
18 lines
360 B
vocabulary V{ |
|
type Color |
|
type Area |
|
Border(Area,Area) |
|
Coloring(Area):Color |
|
} |
|
|
|
theory T : V { |
|
// Two adjacent countries can not have the same color |
|
//TODO add this constraint |
|
|
|
!a,b: Border(a,b) => Coloring(a) ~= Coloring(b). |
|
} |
|
|
|
include "coloring_draw.idp" |
|
include "coloring_instance_1.idp" |
|
include "coloring_oplossing.aidp" |
|
include "idpd3/run.idp"
|
|
|