2007-06-27 06:15:51 -04:00
|
|
|
|
2007-10-12 04:01:11 -04:00
|
|
|
(library (ikarus records procedural)
|
2007-06-27 06:15:51 -04:00
|
|
|
(export
|
2007-10-12 04:01:11 -04:00
|
|
|
make-record-type-descriptor record-type-descriptor?
|
|
|
|
make-record-constructor-descriptor record-accessor
|
|
|
|
record-mutator record-constructor record-predicate record?
|
|
|
|
record-rtd record-type-name record-type-parent record-type-uid
|
|
|
|
record-type-generative? record-type-sealed? record-type-opaque?
|
2007-10-23 16:38:34 -04:00
|
|
|
record-type-field-names record-field-mutable? rtd-subtype? rtd?)
|
2007-06-27 06:15:51 -04:00
|
|
|
(import
|
2007-10-12 04:01:11 -04:00
|
|
|
(except (ikarus)
|
|
|
|
record-constructor record-predicate record? record-type-name
|
2007-10-25 02:19:53 -04:00
|
|
|
record-type-parent record-type-descriptor? record-rtd
|
|
|
|
record-type-uid record-type-sealed? record-type-opaque?
|
|
|
|
record-type-generative? make-record-type-descriptor
|
|
|
|
make-record-constructor-descriptor record-accessor
|
|
|
|
record-mutator
|
2007-10-23 16:38:34 -04:00
|
|
|
record-type-field-names record-field-mutable?
|
|
|
|
rtd? rtd-subtype?)
|
2007-10-12 04:01:11 -04:00
|
|
|
(ikarus system $structs))
|
2007-06-27 06:15:51 -04:00
|
|
|
|
2007-10-12 04:01:11 -04:00
|
|
|
(define-struct rtd
|
|
|
|
(name size old-fields printer-proc symbol parent sealed? opaque? uid fields))
|
2007-07-13 06:23:54 -04:00
|
|
|
|
2007-06-27 06:15:51 -04:00
|
|
|
(define rtd-alist '())
|
|
|
|
(define (intern-rtd! uid rtd)
|
|
|
|
(set! rtd-alist (cons (cons uid rtd) rtd-alist)))
|
|
|
|
(define (lookup-rtd uid)
|
|
|
|
(cond
|
|
|
|
[(assq uid rtd-alist) => cdr]
|
|
|
|
[else #f]))
|
|
|
|
|
|
|
|
(define (record-type-descriptor? x) (rtd? x))
|
|
|
|
|
2007-07-13 06:23:54 -04:00
|
|
|
(define (record? x)
|
2007-10-12 04:01:11 -04:00
|
|
|
(and ($struct? x)
|
|
|
|
(let ([rtd ($struct-rtd x)])
|
2007-07-13 06:23:54 -04:00
|
|
|
(and (rtd? rtd)
|
|
|
|
(not (rtd-opaque? rtd))))))
|
|
|
|
|
|
|
|
(define (record-rtd x)
|
|
|
|
(define (err x)
|
|
|
|
(error 'record-rtd "~s is not a record" x))
|
2007-10-12 04:01:11 -04:00
|
|
|
(if ($struct? x)
|
|
|
|
(let ([rtd ($struct-rtd x)])
|
2007-07-13 06:23:54 -04:00
|
|
|
(if (rtd? rtd)
|
|
|
|
(if (not (rtd-opaque? rtd))
|
|
|
|
rtd
|
|
|
|
(err x))
|
|
|
|
(err x)))
|
|
|
|
(err x)))
|
|
|
|
|
|
|
|
(define (record-type-name x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(rtd-name x)
|
|
|
|
(error 'record-type-name "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-parent x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(rtd-parent x)
|
|
|
|
(error 'record-type-parent "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-uid x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(rtd-uid x)
|
|
|
|
(error 'record-type-uid "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-sealed? x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(rtd-sealed? x)
|
|
|
|
(error 'record-type-sealed? "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-opaque? x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(rtd-opaque? x)
|
|
|
|
(error 'record-type-opaque? "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-generative? x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(not (rtd-sealed? x))
|
|
|
|
(error 'record-type-generative? "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
(define (record-type-field-names x)
|
|
|
|
(if (rtd? x)
|
|
|
|
(let ([v (rtd-fields x)])
|
|
|
|
(let ([n (vector-length v)])
|
|
|
|
(let f ([x (make-vector n)] [v v] [n n] [i 0])
|
|
|
|
(if (= i n)
|
|
|
|
x
|
|
|
|
(begin
|
|
|
|
(vector-set! x i (cdr (vector-ref v i)))
|
|
|
|
(f x v n (fxadd1 i)))))))
|
|
|
|
(error 'record-type-field-names "~s is not an rtd" x)))
|
|
|
|
|
|
|
|
|
2007-06-27 06:15:51 -04:00
|
|
|
(module (make-record-type-descriptor)
|
|
|
|
(define who 'make-record-type-descriptor)
|
2007-07-13 06:23:54 -04:00
|
|
|
(define (make-rtd-aux name parent uid sealed? opaque?
|
|
|
|
parent-size fields)
|
|
|
|
(make-rtd name (+ parent-size (vector-length fields))
|
|
|
|
#f #f #f parent sealed? opaque? uid fields))
|
|
|
|
(define (convert-fields sv)
|
2007-06-27 06:15:51 -04:00
|
|
|
(unless (vector? sv)
|
|
|
|
(error who "invalid fields argument ~s" sv))
|
2007-07-13 06:23:54 -04:00
|
|
|
(let ([n2 (vector-length sv)])
|
|
|
|
(let ([v (make-vector n2)])
|
2007-06-27 06:15:51 -04:00
|
|
|
(let f ([i 0])
|
|
|
|
(unless (= i n2)
|
|
|
|
(let ([x (vector-ref sv i)])
|
|
|
|
(if (pair? x)
|
|
|
|
(let ([m/u (car x)] [x (cdr x)])
|
|
|
|
(if (pair? x)
|
|
|
|
(let ([name (car x)])
|
|
|
|
(unless (and (null? (cdr x)) (symbol? name))
|
|
|
|
(error who "invalid fields argument ~s" sv))
|
2007-07-13 06:23:54 -04:00
|
|
|
(vector-set! v i
|
2007-06-27 06:15:51 -04:00
|
|
|
(cons (case m/u
|
|
|
|
[(mutable) #t]
|
|
|
|
[(immutable) #f]
|
|
|
|
[else
|
|
|
|
(error who "invalid fields argument ~s" sv)])
|
|
|
|
name)))
|
|
|
|
(error who "invalid fields argument ~s" sv)))
|
|
|
|
(error who "invalid fields argument ~s" sv)))
|
|
|
|
(f (add1 i))))
|
|
|
|
v)))
|
|
|
|
(define generate-rtd
|
|
|
|
(lambda (name parent uid sealed? opaque? fields)
|
|
|
|
(cond
|
|
|
|
[(rtd? parent)
|
|
|
|
(when (rtd-sealed? parent)
|
|
|
|
(error who "cannot extend sealed parent ~s" parent))
|
|
|
|
(make-rtd-aux name parent uid sealed?
|
|
|
|
(or opaque? (rtd-opaque? parent))
|
2007-07-13 06:23:54 -04:00
|
|
|
(rtd-size parent)
|
|
|
|
(convert-fields fields))]
|
2007-06-27 06:15:51 -04:00
|
|
|
[(eqv? parent #f)
|
2007-07-13 06:23:54 -04:00
|
|
|
(make-rtd-aux name parent uid sealed? opaque? 0
|
|
|
|
(convert-fields fields))]
|
2007-06-27 06:15:51 -04:00
|
|
|
[else (error who "~s is not a valid parent" parent)])))
|
|
|
|
(define (same-fields-as-rtd? fields rtd)
|
|
|
|
(let* ([fv (rtd-fields rtd)]
|
|
|
|
[n (vector-length fv)])
|
|
|
|
(and (vector? fields)
|
|
|
|
(= (vector-length fields) n)
|
|
|
|
(let f ([i 0])
|
|
|
|
(or (= i n)
|
|
|
|
(let ([a (vector-ref fields i)]
|
|
|
|
[b (vector-ref fv i)])
|
|
|
|
(and
|
|
|
|
(pair? a)
|
|
|
|
(case (car a)
|
|
|
|
[(mutable) (eqv? (car b) #t)]
|
|
|
|
[(immutable) (eqv? (car b) #f)]
|
|
|
|
[else #f])
|
|
|
|
(let ([a (cdr a)])
|
|
|
|
(and (pair? a)
|
|
|
|
(null? (cdr a))
|
|
|
|
(eq? (car a) (cdr b))))
|
|
|
|
(f (+ i 1)))))))))
|
|
|
|
(define make-nongenerative-rtd
|
|
|
|
(lambda (name parent uid sealed? opaque? fields)
|
|
|
|
(cond
|
|
|
|
[(lookup-rtd uid) =>
|
|
|
|
(lambda (rtd)
|
|
|
|
(unless
|
|
|
|
(and (eqv? name (rtd-name rtd))
|
|
|
|
(eqv? parent (rtd-parent rtd))
|
|
|
|
(eqv? sealed? (rtd-sealed? rtd))
|
|
|
|
(eqv? opaque? (rtd-opaque? rtd))
|
|
|
|
(same-fields-as-rtd? fields rtd))
|
|
|
|
(error who "invalid arguments"))
|
|
|
|
rtd)]
|
|
|
|
[else
|
|
|
|
(let ([rtd (generate-rtd name parent uid sealed? opaque? fields)])
|
|
|
|
(intern-rtd! uid rtd)
|
|
|
|
rtd)])))
|
|
|
|
(define make-record-type-descriptor
|
|
|
|
(lambda (name parent uid sealed? opaque? fields)
|
|
|
|
(unless (symbol? name)
|
|
|
|
(error who "~s is not a valid record type name" name))
|
|
|
|
(unless (boolean? sealed?)
|
|
|
|
(error who "~s is not a valid sealed? argument" sealed?))
|
|
|
|
(unless (boolean? opaque?)
|
|
|
|
(error who "~s is not a valid opaque? argument" opaque?))
|
|
|
|
(cond
|
|
|
|
[(symbol? uid)
|
|
|
|
(make-nongenerative-rtd name parent uid sealed? opaque? fields)]
|
|
|
|
[(eqv? uid #f)
|
|
|
|
(generate-rtd name parent uid sealed? opaque? fields)]
|
|
|
|
[else (error who "~s is not a valid uid" uid)]))))
|
|
|
|
|
2007-10-12 04:01:11 -04:00
|
|
|
(define-struct rcd (rtd prcd proc))
|
2007-10-23 16:38:34 -04:00
|
|
|
|
2007-07-05 04:48:40 -04:00
|
|
|
(define (is-parent-of? prtd rtd)
|
|
|
|
(let ([p (rtd-parent rtd)])
|
|
|
|
(cond
|
|
|
|
[(eq? p prtd) #t]
|
|
|
|
[(not p) #f]
|
|
|
|
[else (is-parent-of? prtd p)])))
|
2007-10-23 16:38:34 -04:00
|
|
|
|
|
|
|
(define (rtd-subtype? rtd parent-rtd)
|
|
|
|
(unless (rtd? rtd)
|
|
|
|
(error 'rtd-subtype? "~s is not an rtd" rtd))
|
|
|
|
(unless (rtd? parent-rtd)
|
|
|
|
(error 'rtd-substype? "~s is not an rtd" parent-rtd))
|
|
|
|
(or (eq? rtd parent-rtd)
|
|
|
|
(is-parent-of? parent-rtd rtd)))
|
2007-07-05 04:48:40 -04:00
|
|
|
|
2007-06-27 06:15:51 -04:00
|
|
|
(define make-record-constructor-descriptor
|
2007-07-05 04:48:40 -04:00
|
|
|
(lambda (rtd prcd protocol)
|
2007-06-27 06:15:51 -04:00
|
|
|
(define who 'make-record-constructor-descriptor)
|
|
|
|
(unless (rtd? rtd)
|
2007-07-05 04:48:40 -04:00
|
|
|
(error who "~s is not a record type descriptor" rtd))
|
|
|
|
(unless (or (not protocol) (procedure? protocol))
|
|
|
|
(error who "invalid protocol ~s" protocol))
|
|
|
|
(let ([prtd (rtd-parent rtd)])
|
|
|
|
(cond
|
|
|
|
[(not prcd)
|
|
|
|
(make-rcd rtd #f protocol)]
|
|
|
|
[(rcd? prcd)
|
|
|
|
(unless (is-parent-of? (rcd-rtd prcd) rtd)
|
|
|
|
(error who "descriptor ~s does not apply to ~s"
|
|
|
|
prcd rtd))
|
|
|
|
(make-rcd rtd prcd protocol)]
|
2007-07-13 06:23:54 -04:00
|
|
|
[else
|
|
|
|
(error who "~s is not a valid record constructor descriptor" prcd)]))))
|
2007-06-27 06:15:51 -04:00
|
|
|
|
|
|
|
(define (record-constructor rcd)
|
|
|
|
(define who 'record-constructor)
|
2007-10-23 00:28:21 -04:00
|
|
|
(define (constructor main-rtd size prcd proto)
|
|
|
|
(if (not prcd) ;;; base
|
|
|
|
(lambda (f*)
|
|
|
|
(let ([v (lambda flds
|
|
|
|
(let ([n (rtd-size main-rtd)])
|
|
|
|
(unless (= (length flds) size)
|
|
|
|
(error 'record-constructor
|
|
|
|
"expecting ~s args, got ~s" n flds))
|
|
|
|
(let ([r ($make-struct main-rtd n)])
|
|
|
|
(let f ([i 0] [r r] [flds flds] [f* f*])
|
|
|
|
(cond
|
|
|
|
[(null? flds)
|
|
|
|
(if (null? f*)
|
|
|
|
r
|
|
|
|
(f i r (car f*) (cdr f*)))]
|
|
|
|
[else
|
|
|
|
($struct-set! r i (car flds))
|
|
|
|
(f (add1 i) r (cdr flds) f*)])))))])
|
|
|
|
(if proto (proto v) v)))
|
|
|
|
(let ([pprcd (rcd-prcd prcd)]
|
|
|
|
[sz (rtd-size (rcd-rtd prcd))])
|
|
|
|
(let ([p (constructor main-rtd sz pprcd (rcd-proc prcd))]
|
|
|
|
[n (- size sz)])
|
|
|
|
(lambda (f*)
|
2007-10-23 16:38:34 -04:00
|
|
|
(if proto
|
|
|
|
(proto
|
|
|
|
(lambda fmls
|
|
|
|
(lambda flds
|
|
|
|
(unless (= (length flds) n)
|
|
|
|
(error 'record-constructor
|
|
|
|
"expecting ~s args, got ~s" n flds))
|
|
|
|
(apply (p (cons flds f*)) fmls))))
|
|
|
|
(lambda flds
|
|
|
|
(unless (= (length flds) n)
|
|
|
|
(error 'record-constructor
|
|
|
|
"expecting ~s args, got ~s" n flds))
|
|
|
|
((p (cons flds f*))))))))))
|
2007-06-27 06:15:51 -04:00
|
|
|
(unless (rcd? rcd)
|
|
|
|
(error who "~s is not a record constructor descriptor" rcd))
|
|
|
|
(let ([rtd (rcd-rtd rcd)]
|
2007-10-23 00:28:21 -04:00
|
|
|
[prcd (rcd-prcd rcd)]
|
|
|
|
[proto (rcd-proc rcd)])
|
|
|
|
((constructor rtd (rtd-size rtd) prcd proto) '())))
|
|
|
|
|
2007-07-05 09:59:06 -04:00
|
|
|
|
2007-06-27 06:15:51 -04:00
|
|
|
(define (record-accessor rtd k)
|
|
|
|
(define who 'record-accessor)
|
|
|
|
(unless (rtd? rtd)
|
|
|
|
(error who "~s is not an rtd" rtd))
|
|
|
|
(unless (and (fixnum? k) (fx>= k 0))
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(let ([sz (rtd-size rtd)]
|
|
|
|
[p (rtd-parent rtd)])
|
|
|
|
(let ([i (if p (+ k (rtd-size p)) k)])
|
|
|
|
(unless (fx< i sz)
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
2007-10-12 04:01:11 -04:00
|
|
|
[($struct/rtd? x rtd) ($struct-ref x i)]
|
|
|
|
[($struct? x)
|
|
|
|
(let ([xrtd ($struct-rtd x)])
|
2007-06-27 06:15:51 -04:00
|
|
|
(unless (rtd? xrtd)
|
|
|
|
(error who "~s is not of type ~s" x rtd))
|
|
|
|
(let f ([prtd (rtd-parent xrtd)] [rtd rtd] [x x] [i i])
|
|
|
|
(cond
|
2007-10-12 04:01:11 -04:00
|
|
|
[(eq? prtd rtd) ($struct-ref x i)]
|
2007-06-27 06:15:51 -04:00
|
|
|
[(not prtd)
|
|
|
|
(error who "~s is not of type ~s" x rtd)]
|
|
|
|
[else (f (rtd-parent prtd) rtd x i)])))]
|
|
|
|
[else (error who "~s is not of type ~s" x rtd)])))))
|
|
|
|
|
|
|
|
(define (record-mutator rtd k)
|
|
|
|
(define who 'record-mutator)
|
|
|
|
(unless (rtd? rtd)
|
|
|
|
(error who "~s is not an rtd" rtd))
|
|
|
|
(unless (and (fixnum? k) (fx>= k 0))
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(let ([sz (rtd-size rtd)]
|
|
|
|
[p (rtd-parent rtd)])
|
|
|
|
(let ([i (if p (+ k (rtd-size p)) k)])
|
|
|
|
(unless (fx< i sz)
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(unless (car (vector-ref (rtd-fields rtd) k))
|
|
|
|
(error who "field ~s of ~s is not mutable" k rtd))
|
|
|
|
(lambda (x v)
|
|
|
|
(cond
|
2007-10-12 04:01:11 -04:00
|
|
|
[($struct/rtd? x rtd) ($struct-set! x i v)]
|
|
|
|
[($struct? x)
|
|
|
|
(let ([xrtd ($struct-rtd x)])
|
2007-06-27 06:15:51 -04:00
|
|
|
(unless (rtd? xrtd)
|
|
|
|
(error who "~s is not of type ~s" x rtd))
|
|
|
|
(let f ([prtd (rtd-parent xrtd)] [rtd rtd] [x x] [i i] [v v])
|
|
|
|
(cond
|
2007-10-12 04:01:11 -04:00
|
|
|
[(eq? prtd rtd) ($struct-set! x i v)]
|
2007-06-27 06:15:51 -04:00
|
|
|
[(not prtd)
|
|
|
|
(error who "~s is not of type ~s" x rtd)]
|
|
|
|
[else (f (rtd-parent prtd) rtd x i v)])))]
|
|
|
|
[else (error who "~s is not of type ~s" x rtd)])))))
|
|
|
|
|
|
|
|
(define (record-predicate rtd)
|
|
|
|
(define who 'record-predicate)
|
|
|
|
(unless (rtd? rtd)
|
|
|
|
(error who "~s is not an rtd" rtd))
|
|
|
|
(let ([sz (rtd-size rtd)]
|
|
|
|
[p (rtd-parent rtd)])
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
2007-10-12 04:01:11 -04:00
|
|
|
[($struct/rtd? x rtd) #t]
|
2007-10-25 02:19:53 -04:00
|
|
|
[($struct? x)
|
2007-10-12 04:01:11 -04:00
|
|
|
(let ([xrtd ($struct-rtd x)])
|
2007-06-27 06:15:51 -04:00
|
|
|
(and (rtd? xrtd)
|
|
|
|
(let f ([prtd (rtd-parent xrtd)] [rtd rtd])
|
|
|
|
(cond
|
|
|
|
[(eq? prtd rtd) #t]
|
|
|
|
[(not prtd) #f]
|
|
|
|
[else (f (rtd-parent prtd) rtd)]))))]
|
|
|
|
[else #f]))))
|
|
|
|
|
2007-10-12 04:01:11 -04:00
|
|
|
|
|
|
|
(define (record-field-mutable? rtd k)
|
|
|
|
(define who 'record-field-mutable?)
|
|
|
|
(unless (rtd? rtd)
|
|
|
|
(error who "~s is not an rtd" rtd))
|
|
|
|
(unless (and (fixnum? k) (fx>= k 0))
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(let ([sz (rtd-size rtd)]
|
|
|
|
[p (rtd-parent rtd)])
|
|
|
|
(let ([i (if p (+ k (rtd-size p)) k)])
|
|
|
|
(unless (fx< i sz)
|
|
|
|
(error who "~s is not a valid index" k))
|
|
|
|
(car (vector-ref (rtd-fields rtd) k)))))
|
|
|
|
|
|
|
|
(set-rtd-printer! (type-descriptor rtd)
|
2007-07-13 06:23:54 -04:00
|
|
|
(lambda (x p)
|
|
|
|
(display (format "#<record-type-descriptor ~s>" (rtd-name x)) p)))
|
2007-06-27 06:15:51 -04:00
|
|
|
|
2007-10-12 04:01:11 -04:00
|
|
|
(set-rtd-printer! (type-descriptor rcd)
|
2007-07-13 06:23:54 -04:00
|
|
|
(lambda (x p)
|
|
|
|
(display (format "#<record-constructor-descriptor ~s>"
|
|
|
|
(rtd-name (rcd-rtd x))) p)))
|
2007-06-27 06:15:51 -04:00
|
|
|
|
|
|
|
)
|
2007-10-23 00:28:21 -04:00
|
|
|
|
|
|
|
|
|
|
|
#!eof
|
|
|
|
|
|
|
|
rtd0 fields=4
|
|
|
|
proto0 =
|
|
|
|
(lambda (n)
|
|
|
|
(lambda (p0-fmls ...)
|
|
|
|
(n f0 f1 f2 f3)))
|
|
|
|
|
|
|
|
rtd1 fields=2
|
|
|
|
proto1 =
|
|
|
|
(lambda (n)
|
|
|
|
(lambda (p1-fmls ...)
|
|
|
|
((n p0-acts ...) f4 f5)))
|
|
|
|
|
|
|
|
rtd2 fields=1
|
|
|
|
proto2 =
|
|
|
|
(lambda (n)
|
|
|
|
(lambda (p2-fmls ...)
|
|
|
|
((n p1-acts ...) f6)))
|
|
|
|
|
|
|
|
|
|
|
|
(record-constructor rcd2)
|
|
|
|
==
|
|
|
|
(proto2 (lambda p1-fml*
|
|
|
|
(lambda (f6)
|
|
|
|
(apply (proto1 (lambda p0-fml*
|
|
|
|
(lambda (f4 f5)
|
|
|
|
(apply (proto0 (lambda (f0 f1 f2 f3)
|
|
|
|
($record rtd2 f0 f1 f2 f3 f4 f5 f6)))
|
|
|
|
p0-fml*))))
|
|
|
|
p1-fml*))))
|
|
|
|
|
|
|
|
new0 = (lambda (f0 f1 f2 f3 f4 f5 f6)
|
|
|
|
($record rtd2 f0 f1 f2 f3 f4 f5 f6))
|
|
|
|
|
|
|
|
(record-constructor rcd2)
|
|
|
|
==
|
|
|
|
(proto2 (lambda p1-fml*
|
|
|
|
(lambda (f6)
|
|
|
|
(apply (proto1 (lambda p0-fml*
|
|
|
|
(lambda (f4 f5)
|
|
|
|
(apply (proto0 (lambda (f0 f1 f2 f3)
|
|
|
|
(new0 f0 f1 f2 f3 f4 f5 f6)))
|
|
|
|
p0-fml*))))
|
|
|
|
p1-fml*))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|