-
Notifications
You must be signed in to change notification settings - Fork 1
/
tucteam.pl
47 lines (25 loc) · 1.45 KB
/
tucteam.pl
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
/* -*- Mode:Prolog; coding:utf-8; -*- */
%% FILE tucteam.pl
%% SYSTEM TUC
%% CREATED TA-010127
%% REVISED TA-061117
%% %% Makefile for TEAMTUC server, Incrementally
%%?-prolog_flag(unknown,_,fail). %% (Don't?) crash on undefined predicates
%:-compile('tucbuses.pl').
:- use_module( tucbuses, [ ] ). %% RS-131227 Avoid loop?
%?-compile('main.pl'). %% TA-031115
%:- use_module( main, [ ( := )/2 ] ). %% RS-131227 Avoid loop?
:- use_module( declare, [ (:=)/2, (=:)/2, remember/1, set/2, value/2 ] ). %% RS-141105 General (semantic) Operators, %helpers := /2, =: /2, set/2, value/2. set( X, Y ) is X := Y .
% ?-compile('version.pl'). %% TA-031117 %% RS-131227 With version_date/1, used in monobus -> teledat2.pl %% RS-150104 Moved to main!
?-compile('monobus.pl'). %% TA-031115
?- (unix_language := eng), %% Standard for IDI/NTNU UNIX Solaris
(origlanguage := norsk), %% TA-040626
(language := norsk), %% Initial default user language
(duallangflag := true), %% Also try English if unknown words
(noparentflag := true), %% Ignore content of parentheses
(tramflag := false), %% Team/TT didn't like A/S Gråkallbanen
(nodotflag := true), %% Readymade Q: Når går bussen fra ....
(parsetime_limit := 10000), %% 333 Mhz
(trace := 0). %% avoid syntax trees
%% (disablenightbus := true). %% AD HOC %% TA-040809
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%