File: nesterov-top.lisp

package info (click to toggle)
acl2 8.6%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,138,276 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,978; makefile: 3,840; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (44 lines) | stat: -rwxr-xr-x 1,388 bytes parent folder | download | duplicates (4)
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
; cert_param: (uses-acl2r)

;;
;; This book includes all the books included in "top.lisp"
;; and also Nesterov's theorem. To use them, ACL2(r) is 
;; required.
;; 
;; "nesterov-1.lisp" includes:
;; - the basic definitions and theorems involving the
;;   Lipschitz constant function "L" and the function "DIM"
;;   evaluating the the dimension of R^n
;; - the basic definitions and theorems involving convexity,
;;   continuity, and the derivatives/integrals of our convex
;;   function "mvfn" and its helper "phi-mvfn"
;; - ineq. 6 implies ineq. 1
;; - ineq. 5 implies ineq. 2
;;
;; "nesterov-2.lisp" includes:
;; - ineq. 0 implies ineq. 4
;; - ineq. 4 implies ineq. 1
;; - ineq. 1 implies ineq. 2
;; - ineq. 2 implies ineq. 3
;; - ineq. 3 implies ineq. 0
;;
;; "nesterov-3.lisp" includes:
;; - ineq. 1 implies ineq. 6
;; - ineq. 2 implies ineq. 5
;;
;; "nesterov-4.lisp" includes:
;; - the Skolem functions for all the inequalities
;; - the final form of Nesterov's theorem
;;
;; "ftc-2.lisp" is almost the same as "ftc-2.lisp" from the
;; integral book with some minor modifications. 
;;
;; The dependence between the .lisp files are as follows where
;; "->" denotes "depends on":
;;
;; nesterov-4 -> nesterov-3 -> nesterov-2 -> nesterov-1 -> ftc-2
;; 					     nesterov-1 -> convex -> ...
;;

(in-package "ACL2")
(include-book "nesterov-4")