Diff for /loncom/homework/default_homework.lcpm between versions 1.4 and 1.7

version 1.4, 2000/10/12 20:36:05 version 1.7, 2000/10/25 22:02:53
Line 4 Line 4
 #  #
 $RANDOMINIT=0;  $RANDOMINIT=0;
   
   sub caparesponse_check {
     my $answer='';
     my $type='';
     my $tol_type='';
     my $tolerance='';
     my $sig_lbound='';
     my $sig_ubound='';
     my $ans_fmt='';
     my $unit_str='';
     my $calc='';
     my ($response,$expr)=@_;
     
     ($answer,$type,$tol_type,$tolerance,$sig_lbound,$sig_ubound,$ans_fmt,
      $unit_str,$calc) = eval $expr.'return $answer,$type,$tol_type,$tolerance,$sig_lbound,$sig_ubound,$ans_fmt,$unit_str,$calc';
     my $result = &caparesponse_capa_check_answer($response,$answer,$type,
          $tol_type,$tolerance,
          $sig_lbound,$sig_ubound,
          $ans_fmt, $unit_str,$calc);
     return ":$result:$response:$answer:";
   }
   
 sub tex {  sub tex {
   if ( $external::target eq "tex" ) {    if ( $external::target eq "tex" ) {
     #$SCRIPT_RESULT.=@_[0];      #$SCRIPT_RESULT.=@_[0];
Line 66  sub format { Line 87  sub format {
   my ($value,$fmt)=@_;    my ($value,$fmt)=@_;
   $SCRIPT_RESULT.=sprintf('%.'.$fmt,$value);    $SCRIPT_RESULT.=sprintf('%.'.$fmt,$value);
 }  }
   
   sub map {
     my $num = $#_/2;
     my $i;
     my @used;
     my @permutation;
     for ($i=0; $i < $num;) {
       $rand = &random(1,$num,1);
       if ( $used[$rand] == '0' ) {
         $i++;
         $used[$rand]='1';
         $permutation[$i]=$rand;
       }
     }
     for ( $i=1 ; $i<$num+1 ; $i++ ) {
       ${$_[$permutation[$i]]}=$_[$i+$num]
     }
   }
   
   sub choose {
     my $num = $_[0];
     return $_[$num];
   }
   #$external::randomseed=time;
   #$a=2;
   #$b=2;
   #$c=2;
   #&map(1,\$a,\$b,\$c,3,4,5);
   #print $a."\n".$b."\n";

Removed from v.1.4  
changed lines
  Added in v.1.7


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