-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed setup.sh to not reset $DTHOME
Changed logon_do and lisp to actually use the values of limit and edges allow a seperate value for tedges (transfer edges)
- Loading branch information
Showing
3 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
(setf fmt "bitext") | ||
(setf limit 3) | ||
(setf count 1) | ||
(setf tsdb::*tsdb-maximal-number-of-analyses* limit) | ||
(setf tsdb::*tsdb-maximal-number-of-results* limit) | ||
(set (intern "*MAXIMUM-NUMBER-OF-EDGES*" :lkb) 100000) | ||
(set (intern "*UNPACK-EDGE-ALLOWANCE*" :lkb) 100000) | ||
(set (intern "*TSDB-MAXIMAL-NUMBER-OF-EDGES*" :tsdb) 100000) | ||
(setf mt::*transfer-edge-limit* 5000) | ||
(setf edges 100000) | ||
(setf tedges 5000) | ||
;; (setf tsdb::*tsdb-maximal-number-of-analyses* limit) | ||
;; (setf tsdb::*tsdb-maximal-number-of-results* limit) | ||
;; (set (intern "*MAXIMUM-NUMBER-OF-EDGES*" :lkb) 100000) | ||
;; (set (intern "*UNPACK-EDGE-ALLOWANCE*" :lkb) 100000) | ||
;; (set (intern "*TSDB-MAXIMAL-NUMBER-OF-EDGES*" :tsdb) 100000) | ||
;; (setf mt::*transfer-edge-limit* 5000) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
DTHOME=`dirname $0` | ||
#DTHOME=`dirname $0` | ||
export DTHOME | ||
export PATH=$DTHOME/bin:$PATH | ||
|
||
|