forked from saetre/busstuc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tucsms.pl
56 lines (29 loc) · 1.47 KB
/
tucsms.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
46
47
48
49
50
51
52
53
/* -*- Mode:Prolog; coding:utf-8; -*- */
%% FILE tucsms.pl
%% SYSTEM TUC
%% CREATED TA-020125
%% REVISED TA-090401
%% Makefile for SMSTUC server, Incrementally
:- use_module( declare, [ ( := )/2 ] ). %% RS-131227 Avoid loop?
%%?-prolog_flag(unknown,_,fail). %% (Don't?) crash on undefined predicates
%:-compile('tucbuses.pl').
:- use_module( tucbuses ). %% RS-131227 Avoid loop?
% ?-compile('version.pl'). %% RS-150104 Moved to main?
?-compile('monobus.pl').
%?-compile('main.pl').
%:- use_module( main, [ run/0 ] ). %% RS-131227 Avoid loop?
:- use_module( main ). %% RS-131227 Avoid loop?
?- (internal_aitbusflag := false), %% NB May change <--- ???
%%%% (smspermanentflag := true), %% SUSPENDED/NOT USED %%
%%%% (smsflag := true), %% ONLY IF PROPER SMS %% TA-110407
(unix_language := eng), %% Standard for IDI/NTNU UNIX Solaris )
(origlanguage := norsk), %%
(language := norsk), %% Initial default user language
(duallangflag := true), %% Also try English if unknown words
(noparentflag := true), %% Ignore content of parentheses
(nodotflag := false), %% Interm. dots are retained
(tramflag := true), %% A/S Gråkallen not OK at TEAM (false), but OK now (AtB, true)
(parsetime_limit := 3000), %% Fast server
(trace := 0). %% avoid syntax trees
%%%% (disablenightbus := true). %% AD HOC %% TA-040809
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%