Diff for /loncom/homework/functionplotresponse.pm between versions 1.30 and 1.31

version 1.30, 2010/11/09 02:29:52 version 1.31, 2010/11/10 22:41:29
Line 799  sub functionplotrulecheck { Line 799  sub functionplotrulecheck {
    my $li=0;     my $li=0;
    my $lh=400;     my $lh=400;
   
   # Special case: the upper boundary was not defined
   # and needs to be set to the value where
   # the condition is not true anymore => set flag
   
      my $findupper=0;
      if (($xfinal eq '')
       && (!defined($Apache::functionplotresponse::functionplotrulelabels{$xfinallabel}))
       && ($xfinallabel)) {
          $findupper=1;
      }
   
 # if a hard value is set for the boundaries, it overrides the label  # if a hard value is set for the boundaries, it overrides the label
    if (($xinitial ne '') && ($xinitiallabel ne '') && ($xinitiallabel ne 'start')) {     if (($xinitial ne '') && ($xinitiallabel ne '') && ($xinitiallabel ne 'start')) {
       $li=&array_index($xmin,$xmax,$xinitial);        $li=&array_index($xmin,$xmax,$xinitial);
Line 808  sub functionplotrulecheck { Line 819  sub functionplotrulecheck {
       $lh=&array_index($xmin,$xmax,$xfinal);        $lh=&array_index($xmin,$xmax,$xfinal);
       $Apache::functionplotresponse::functionplotrulelabels{$xfinallabel}=$lh;        $Apache::functionplotresponse::functionplotrulelabels{$xfinallabel}=$lh;
    }     }
   # if the label is defined, use it
    if (defined($Apache::functionplotresponse::functionplotrulelabels{$xinitiallabel})) {     if (defined($Apache::functionplotresponse::functionplotrulelabels{$xinitiallabel})) {
       $li=$Apache::functionplotresponse::functionplotrulelabels{$xinitiallabel};        $li=$Apache::functionplotresponse::functionplotrulelabels{$xinitiallabel};
    } else {     } else {
       $li=&array_index($xmin,$xmax,$xinitial);        $li=&array_index($xmin,$xmax,$xinitial);
    }     }
    if (defined($Apache::functionplotresponse::functionplotrulelabels{$xfinallabel})) {     unless ($findupper) {
       $lh=$Apache::functionplotresponse::functionplotrulelabels{$xfinallabel};        if (defined($Apache::functionplotresponse::functionplotrulelabels{$xfinallabel})) {
    } else {           $lh=$Apache::functionplotresponse::functionplotrulelabels{$xfinallabel};
       $lh=&array_index($xmin,$xmax,$xfinal);        } else {
            $lh=&array_index($xmin,$xmax,$xfinal);
         }
    }     }
 # Basic sanity checks  # Basic sanity checks
    if ($li<0) { $li=0; }     if ($li<0) { $li=0; }
Line 824  sub functionplotrulecheck { Line 838  sub functionplotrulecheck {
    if ($li>$lh) {     if ($li>$lh) {
        $lh=$li;         $lh=$li;
    }     }
    &Apache::lonnet::logthis("Init $xinitial=$li Final $xfinal=$lh");  
      &Apache::lonnet::logthis("Init $xinitial=$li Final $xfinal=$lh Findupper: $findupper");
    my $tol=$tolfunc;     my $tol=$tolfunc;
    if ($derivative==2) {     if ($derivative==2) {
       $tol=$told2fdx2;        $tol=$told2fdx2;
Line 840  sub functionplotrulecheck { Line 855  sub functionplotrulecheck {
         } else {          } else {
            $val=$Apache::functionplotresponse::func[$i];             $val=$Apache::functionplotresponse::func[$i];
         }          }
         unless (&compare_rel($relationship,$value,$val,$tol)) { return 0; };          unless (&compare_rel($relationship,$value,$val,$tol)) { 
              &Apache::lonnet::logthis("Condition false $findupper at $i with $val");
              if (($findupper) && ($i>$li)) {
                 $Apache::functionplotresponse::functionplotrulelabels{$xfinallabel}=$i;
                 &Apache::lonnet::logthis("Setting $xfinallabel to $i");
                 return 1;
              } else {
                 return 0; 
              }
           }
    }     }
    return 1;     return 1;
 }  }

Removed from v.1.30  
changed lines
  Added in v.1.31


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>