Variable: landmark-winning-threshold

landmark-winning-threshold is a variable defined in landmark.el.gz.

Value

800000

Documentation

Threshold score beyond which an Emacs move is winning.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
;; If you do not modify drastically the previous constants, the only way for a
;; square to have a score higher than OOOOscore is to belong to a "OOOO"
;; qtuple, thus to be a winning move. Similarly, the only way for a square to
;; have a score between XXXXscore and OOOOscore is to belong to a "XXXX"
;; qtuple. We may use these considerations to detect when a given move is
;; winning or losing.

(defconst landmark-winning-threshold
  (aref landmark-score-trans-table (+ 6 6 6 6)) ;; OOOOscore
  "Threshold score beyond which an Emacs move is winning.")