Thank you very much Frank, I think I got it.<br><br>A follow-up question.  With this technique, I have several models, and the data is flowing from one model to the next.  Nice.<br><br>But is there a suggested procedure to temporarily isolate the model, so that it can be tested by itself?  In other words, can one explicitly set values to cells whose initform defines them in terms of other model's slots.<br>
<br>I tried setf on a cell that was linked to another model.  It seems to work.<br><br>But, is its initform (c? (let ((m (fm^ :other-model))) (blah (slot m) ...))) still active? <br>How can I test that?  By forcing that model to recompute itself.  How do I do that?  I did not find an obvious candidate in the exported symbols.<br>
<br>Thanks again,<br><br>Mirko<br><br><div class="gmail_quote">On Tue, Apr 17, 2012 at 5:13 PM, Frank Goenninger <span dir="ltr"><<a href="mailto:frgo@me.com">frgo@me.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
... Output of the short demo below:<br>
<br>
(m-test)<br>
<br>
M1: New value for slot a => 1.<br>
M1: New value for slot b => 1.<br>
M2: New value for slot c => 1.<br>
<br>
STEP 1<br>
<br>
M1: New value for slot a => 2.<br>
M2: New value for slot c => 2.<br>
<br>
STEP 2<br>
<br>
M1: New value for slot b => 3.<br>
M2: New value for slot c => 6.<br>
<br>
... cute, ha ?<br>
<br>
;-)))<br>
<br>
Frank<br>
<br>
Am 17.04.2012 um 23:08 schrieb Frank Goenninger:<br>
<div class="HOEnZb"><div class="h5"><br>
> Hi Mirko,<br>
><br>
> Am 17.04.2012 um 20:17 schrieb Mirko Vukovic:<br>
><br>
>> Hello,<br>
>><br>
>> I am doing very basic cell-stuff, much like the ones in the doc folder:  Not liking excel and its cousins, I am implementing spread-sheet like calculations in cells.<br>
>><br>
>> My question:<br>
>><br>
>> 1) Can I build two models (model1, model2) and specify that a slot in model2 depends on changes in some other slot in model1?<br>
><br>
> Sure:<br>
><br>
> (in-package #:cells)<br>
><br>
> ;;; ------------------<br>
> ;;; ***  Model M1  ***<br>
> ;;; ------------------<br>
><br>
> (defmd m1 ()<br>
>  a<br>
>  b<br>
>  :a (c-in 1)<br>
>  :b (c-in 1))<br>
><br>
> (defobserver a ((self m1))<br>
>  (when new-value<br>
>    (format *debug-io* "~%~S: New value for slot a => ~S."<br>
>      self (a self))))<br>
><br>
> (defobserver b ((self m1))<br>
>  (when new-value<br>
>    (format *debug-io* "~%~S: New value for slot b => ~S."<br>
>      self (b self))))<br>
><br>
> (defmacro mk-m1 (id)<br>
>  `(make-instance 'm1<br>
>     :fm-parent *parent*<br>
>     :md-name ,id))<br>
><br>
> ;;; ------------------<br>
> ;;; ***  Model M2  ***<br>
> ;;; ------------------<br>
><br>
> (defmd m2 ()<br>
>  (c (c? (let ((m1 (fm^ :m1)))   ;; -> fm^ searches for :m1 in the current family<br>
>           (* (a m1) (b m1))))))<br>
><br>
> (defmacro mk-m2 (id)<br>
>  `(make-instance 'm2<br>
>     :fm-parent *parent*<br>
>     :md-name ,id))<br>
><br>
> (defobserver c ((self m2))<br>
>  (when new-value<br>
>    (format *debug-io* "~%~S: New value for slot c => ~S."<br>
>      self (c self))))<br>
><br>
> ;;; ------------------<br>
> ;;; ***  Family M  ***<br>
> ;;; ------------------<br>
><br>
> (defmd m (family)<br>
>  (kids (c? (the-kids<br>
>             (mk-m1 :m1)<br>
>             (mk-m2 :m2)))) ;; :m1 and :m2 are kids of :m's family.<br>
>  :md-name :m)<br>
><br>
> ;;; -----------------<br>
> ;;; ***  TESTING  ***<br>
> ;;; -----------------<br>
><br>
> (defun m-test ()<br>
><br>
>  (let* ((self (make-instance 'm))<br>
>         (m1 (fm-find-kid self :m1)))<br>
><br>
>    ;; Step 1<br>
>    (format *debug-io* "~%~%STEP 1~&")<br>
>    (setf (a m1) 2)<br>
>    ;; => C = 2<br>
>    ;; See observer for C !<br>
><br>
>    ;; Step 2<br>
>    (format *debug-io* "~%~%STEP 2 ~&")<br>
>    (setf (b m1) 3))<br>
>    ;; => C = 6<br>
>    ;; See observer for C !<br>
><br>
>  (values))<br>
><br>
><br>
>> 2) Related: can I change a slot specification in a model.  For example from `c-in' to `c?'.  I assume that I can, but I would have to re-initialize the model somehow.  Correct?<br>
><br>
> This one I'd like to leave for Kenny to answer ... Never did that during one run - I always reset cells via #'cells-reset and the started over when I needed to do that.<br>
><br>
>> I am also very interested in the question posted just a few minutes ago.  I would like to build an automated way of generating a GUI front end my cell models.<br>
><br>
> I tried to answer this in the other mail.<br>
><br>
>><br>
>> Thanks,<br>
>><br>
>> Mirko<br>
><br>
> Hope that helps.<br>
><br>
> Cheers<br>
>    Frank<br>
><br>
<br>
</div></div></blockquote></div><br>