File:  [LON-CAPA] / loncom / homework / default_homework.lcpm
Revision 1.172: download - view: text, annotated - select for diffs
Wed Jan 4 19:54:47 2017 UTC (7 years, 3 months ago) by damieng
Branches: MAIN
CVS tags: version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2, HEAD
avoiding the missing $ in m warning with chemparse

    1: # The LearningOnline Network with CAPA 
    2: # used by lonxml::xmlparse() as input variable $safeinit to Apache::run::run()
    3: #
    4: # $Id: default_homework.lcpm,v 1.172 2017/01/04 19:54:47 damieng Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: #
   29: 
   30: #init some globals
   31: $hidden::RANDOMINIT=0;
   32: $pi=atan2(1,1)*4;
   33: $rad2deg=180.0/$pi;
   34: $deg2rad=$pi/180.0;
   35: $"=' ';
   36: use strict;
   37: {
   38:     my $n = 0;
   39:     my $total = 0;
   40:     my $num_left = 0;
   41:     my @order;
   42:     my $type;
   43: 
   44:     sub init_permutation {
   45: 	my ($size,$requested_type) = @_;
   46: 	@order = (0..$size-1);
   47: 	$n = $size;
   48: 	$type = $requested_type;
   49: 	if ($type eq 'ordered') {
   50: 	    $total = $num_left = 1;
   51: 	} elsif ($type eq 'unordered') {
   52: 	    $total = $num_left = &factorial($size);
   53: 	} else {
   54: 	    die("Unkown type: $type");
   55: 	}
   56:     }
   57: 
   58:     sub get_next_permutation {
   59: 	if ($num_left == $total) {
   60: 	    $num_left--;
   61: 	    return \@order;
   62: 	}
   63: 
   64: 	# Find largest index j with a[j] < a[j+1]
   65: 
   66: 	my $j = scalar(@order) - 2;
   67: 	while ($order[$j] > $order[$j+1]) {
   68: 	    $j--;
   69: 	}
   70: 
   71: 	# Find index k such that a[k] is smallest integer
   72: 	# greater than a[j] to the right of a[j]
   73: 
   74: 	my $k = scalar(@order) - 1;
   75: 	while ($order[$j] > $order[$k]) {
   76: 	    $k--;
   77: 	}
   78: 
   79: 	# Interchange a[j] and a[k]
   80: 
   81: 	@order[($k,$j)] = @order[($j,$k)];
   82: 
   83: 	# Put tail end of permutation after jth position in increasing order
   84: 
   85: 	my $r = scalar(@order) - 1;
   86: 	my $s = $j + 1;
   87: 
   88: 	while ($r > $s) {
   89: 	    @order[($s,$r)]=@order[($r,$s)];
   90: 	    $r--;
   91: 	    $s++;
   92: 	}
   93: 
   94: 	$num_left--;
   95: 	return(\@order);
   96:     }
   97:     
   98:     sub get_permutations_left {
   99: 	return $num_left;
  100:     }
  101: }
  102: 
  103: sub check_commas {
  104:     my ($response)=@_;
  105:     #print("$response ");
  106:     my @numbers=split(',',$response);
  107:     #print(" numbers ".join('-',@numbers)." ");
  108:     if (scalar(@numbers) > 1) {
  109:         #print(" numbers[0] ".$numbers[0]." "); 
  110: 	if (length($numbers[0]) > 3 || length($numbers[0]) == 0) { return -1; }
  111: 	shift(@numbers);
  112: 	#print(" numbers ".scalar(@numbers)." ");
  113: 	while (scalar(@numbers) > 1) {
  114: 	    #print(" numbers ".join('-',@numbers)." ");
  115: 	    if (length($numbers[0]) != 3) { return -2; }
  116: 	    shift(@numbers);
  117: 	}
  118: 	my ($number)=split('\.',$numbers[0]);
  119: 	#print(" number ".$number." ");
  120: 	#print(" numbers[0] ".$numbers[0]." ");
  121: 	if (length($number) != 3) { return -3; }
  122:     } else {
  123: 	my ($number)=split('\.',$numbers[0]);
  124: 	if (length($number) > 3) { return -4; }
  125:     }
  126:     return 1;
  127: }
  128: 
  129: 
  130: sub caparesponse_check {
  131:     my ($answer,$response)=@_;
  132:     #not properly used yet: calc
  133:     #not to be used: $ans_fmt
  134:     my $type=$LONCAPA::CAPAresponse_args{'type'};
  135:     my $tol=$LONCAPA::CAPAresponse_args{'tol'};
  136:     my $sig=$LONCAPA::CAPAresponse_args{'sig'};
  137:     my $ans_fmt=$LONCAPA::CAPAresponse_args{'format'};
  138:     my $unit=$LONCAPA::CAPAresponse_args{'unit'};
  139:     my $calc=$LONCAPA::CAPAresponse_args{'calc'};
  140:     my $samples=$LONCAPA::CAPAresponse_args{'samples'};
  141:     
  142:     my $tol_type=''; # gets it's value from whether tol has a % or not done
  143:     my $sig_lbound=''; #done
  144:     my $sig_ubound=''; #done
  145: 
  146:     #type's definitons come from capaParser.h
  147: 
  148:     #remove leading and trailing whitespace
  149:     if (!defined($response)) {
  150: 	$response='';
  151:     }
  152:     if ($response=~ /^\s|\s$/) {
  153: 	$response=~ s:^\s+|\s+$::g;
  154:     }
  155: 
  156:     if ($type eq 'cs' || $type eq 'ci') {
  157: 	#for string answers make sure all places spaces occur, there is 
  158:         #really only 1 space, in both the answer and the response
  159: 	$answer=~s/ +/ /g;
  160: 	$response=~s/ +/ /g;
  161:     } elsif ($type eq 'mc') {
  162: 	$answer=~s/[\s,]//g;
  163: 	$response=~s/[\s,]//g;
  164:     }
  165:     if ($type eq 'float' && $unit=~/\$/) {
  166: 	if ($response!~/^\$|\$$/)  { return ('NO_UNIT', undef); }
  167: 	$response=~s/\$//g;
  168:     }
  169:     if ($type eq 'float' && $unit=~/\,/ && (&check_commas($response)<0)) {
  170: 	return "COMMA_FAIL:";
  171:     }
  172:     $ans_fmt=~s/\W//g;
  173:     $unit=~s/[\$,]//g;
  174:     if ($type eq 'float') { $response=~s/,//g; }
  175: 
  176:     if (length($response) > 500) { return ('TOO_LONG',undef); }
  177: 
  178:     if ($type eq '' ) {
  179: 	if ( $answer eq ($answer *1.0)) { $type = 2;
  180: 				      } else { $type = 3; }
  181:     } else {
  182: 	if    ($type eq 'cs')    { $type = 4; }
  183: 	elsif ($type eq 'ci')    { $type = 3 }
  184: 	elsif ($type eq 'mc')    { $type = 5; }
  185: 	elsif ($type eq 'fml')   { $type = 8; }
  186:         elsif ($type eq 'math')  { $type = 9; }
  187: 	elsif ($type eq 'subj')  { $type = 7; }
  188: 	elsif ($type eq 'float') { $type = 2; }
  189: 	elsif ($type eq 'int')   { $type = 1; }
  190: 	else { return ('ERROR', "Unknown type of answer: $type") }
  191:     }
  192: 
  193:     my $points;
  194:     my $id_list;
  195:     #formula type setup the sample points
  196:     if ($type eq '8') {
  197: 	($id_list,$points)=split(/@/,$samples);
  198:     }
  199:     if ($tol eq '') {
  200: 	$tol=0.0;
  201: 	$tol_type=1; #TOL_ABSOLUTE
  202:     } else {
  203: 	if ($tol =~ /%$/) {
  204: 	    chop $tol;
  205: 	    $tol_type=2; #TOL_PERCENTAGE
  206: 	} else {
  207: 	    $tol_type=1; #TOL_ABSOLUTE
  208: 	}
  209:     }
  210: 
  211:     ($sig_ubound,$sig_lbound)=&LONCAPA_INTERNAL_get_sigrange($sig);
  212: 
  213:     my $reterror="";
  214:     my $result;
  215:     if (($type eq '9') || ($type eq '8')) {
  216:         if ($response=~/\=/) {
  217:             return ('BAD_FORMULA','Please submit just an expression, not an equation.');
  218:         } elsif ($response =~ /\,/ and $response !~ /^\s*\{.*\}\s*$/) {
  219:             return ('BAD_FORMULA');
  220:         }
  221:     }
  222:     if ($type eq '9') {
  223:       $result = &maxima_check(&maxima_cas_formula_fix($response),&maxima_cas_formula_fix($answer),\$reterror);
  224:     } else {
  225: 	if ($type eq '8') { # fml type
  226: 	    $response = &capa_formula_fix($response);
  227: 	    $answer   = &capa_formula_fix($answer);
  228: 	}
  229:        $result = &caparesponse_capa_check_answer($response,$answer,$type,
  230: 						 $tol_type,$tol,
  231: 						 $sig_lbound,$sig_ubound,
  232: 						 $ans_fmt,$unit,$calc,$id_list,
  233: 						 $points,$external::randomseed,
  234: 						 \$reterror);
  235:     }
  236:     if    ($result == '1') { $result='EXACT_ANS'; } 
  237:     elsif ($result == '2') { $result='APPROX_ANS'; }
  238:     elsif ($result == '3') { $result='SIG_FAIL'; }
  239:     elsif ($result == '4') { $result='UNIT_FAIL'; }
  240:     elsif ($result == '5') { $result='NO_UNIT'; }
  241:     elsif ($result == '6') { $result='UNIT_OK'; }
  242:     elsif ($result == '7') { $result='INCORRECT'; }
  243:     elsif ($result == '8') { $result='UNIT_NOTNEEDED'; }
  244:     elsif ($result == '9') { $result='ANS_CNT_NOT_MATCH'; }
  245:     elsif ($result =='10') { $result='SUB_RECORDED'; }
  246:     elsif ($result =='11') { $result='BAD_FORMULA'; }
  247:     elsif ($result =='12' && !$response) { $result='MISSING_ANSWER'; }
  248:     elsif ($result =='12') { $result='WANTED_NUMERIC'; }
  249:     elsif ($result =='13') { $result='UNIT_INVALID_INSTRUCTOR'; }
  250:     elsif ($result =='141') { $result='UNIT_INVALID_STUDENT'; }
  251:     elsif ($result =='142') { $result='UNIT_INVALID_STUDENT'; }
  252:     elsif ($result =='143') { $result='UNIT_INVALID_STUDENT'; }
  253:     elsif ($result =='15') { $result='UNIT_IRRECONCIBLE'; }
  254:     else  {$result = "ERROR: Unknown Result:$result:$@:";}
  255: 
  256:     return ($result,$reterror);
  257: }
  258: 
  259: 
  260: sub caparesponse_check_list {
  261:     my $responses=$LONCAPA::CAPAresponse_args{'response'};
  262:     &LONCAPA_INTERNAL_DEBUG("args ".join(':',%LONCAPA::CAPAresponse_args));
  263:     my $type = $LONCAPA::CAPAresponse_args{'type'};
  264:     my $answerunit=$LONCAPA::CAPAresponse_args{'unit'};
  265:     &LONCAPA_INTERNAL_DEBUG("Got type :$type: answer unit :$answerunit:\n");
  266:    
  267:     my $preprocess=$LONCAPA::CAPAresponse_args{'preprocess'};
  268:     $preprocess=~s/^\&//;
  269: 
  270:     my $num_input_lines =
  271: 	scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}});
  272:     
  273:     if ($type ne '' ) {
  274: 	if (scalar(@$responses) < $num_input_lines) {
  275: 	    return 'MISSING_ANSWER';
  276: 	}
  277: 	if (scalar(@$responses) > $num_input_lines) {
  278: 	    return 'EXTRA_ANSWER';
  279: 	}
  280: 
  281:     }
  282: 
  283:     foreach my $which (0..($num_input_lines-1)) {
  284: 	my $answer_size = 
  285: 	    scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}[$which]});
  286: 	if ($type ne '' 
  287: 	    && $answer_size > 1) {
  288: 	    $responses->[$which]=[split(/,/,$responses->[$which])];
  289: 	} else {
  290: 	    $responses->[$which]=[$responses->[$which]];
  291: 	}
  292:     }
  293:     foreach my $which (0..($num_input_lines-1)) {
  294: 	my $answer_size = 
  295: 	    scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}[$which]});
  296: 	my $response_size = 
  297: 	    scalar(@{$responses->[$which]});
  298: 	if ($answer_size > $response_size) {
  299: 	    return 'MISSING_ANSWER';
  300: 	}
  301: 	if ($answer_size < $response_size) {
  302: 	    return 'EXTRA_ANSWER';
  303: 	}
  304:     }
  305: 
  306:     my $unit;
  307:     my ($allowalgebra)=($LONCAPA::CAPAresponse_args{'allowalgebra'}=~/^(yes|1|on)$/i);
  308:     if ($type eq 'float' || $type eq '') {
  309: 	#for numerical problems split off the unit
  310:         my $part1;
  311:         my $part2;
  312:         if ($allowalgebra) {
  313:            ($part1,$part2)=($responses->[0][-1]=~ /^(.*[^\s])\s+([^\s]+)$/); 
  314:         } else {
  315:            ($part1,$part2)=($responses->[0][-1]=~ /^([\d\.\,\s\$]*(?:(?:[xX\*]10[\^\*]*|[eE]*)[\+\-]*\d*)*(?:^|\S)\d+)([\$\s\w\^\*\/\(\)\+\-]*[^\d\.\s\,][\$\s\w\^\*\/\(\)\+\-]*)$/);
  316:         }
  317:         if (defined($part1) && defined($part2)) {
  318: 	    $responses->[0][-1]=$part1;
  319: 	    $unit=&capa_formula_fix($part2);
  320:             my $customunits=$LONCAPA::CAPAresponse_args{'customunits'};
  321:             if ($customunits =~ /\S/) {
  322:                 foreach my $replacement (split(/\s*\,\s*/,$customunits)) {
  323:                     my ($which,$what)=split(/\s*\=\s*/,$replacement);
  324:                     if ((defined($which)) && (defined($what))) {
  325:                         $what=&capa_formula_fix($what);
  326:                         $unit=~s/$which/\($what\)/g;
  327:                     }
  328:                 }
  329:             }
  330: 	}
  331:     }
  332:     $unit=~s/\s//;
  333:     my $error;
  334:     foreach my $response (@$responses) {
  335:        foreach my $element (@$response) {
  336:           # See if we have preprocessor
  337:           if ($preprocess=~/\S/) {
  338:              if (defined(&$preprocess)) {
  339:                 no strict 'refs';
  340:                 $element=&$preprocess($element,$unit);
  341:                 use strict 'refs';
  342:              }
  343:           }
  344:           if (($type eq 'float') || (($type eq '') && ($unit ne ''))) {
  345:               $element =~ s/\s//g;
  346:           }
  347:           my $appendunit=$unit;
  348: # Deal with percentages
  349: # unit is unit entered by student, answerunit is unit by author
  350: # Deprecated: divide answer by 100 if student entered percent,
  351: # but author did not. Too much confusion
  352: #          if (($unit=~/\%/) && ($answerunit ne '%'))  {
  353: #             $element=$element/100;
  354: #             $appendunit=~s/\%//;
  355: #          }    
  356: # Author entered percent, student did not
  357:           if (($unit!~/\%/) && ($answerunit=~/\%/)) {
  358:              $element=$element*100;
  359:              $appendunit='%'.$appendunit;
  360:           }
  361: # Zero does not need a dimension
  362:           if (($element =~ /^[0\.]+$/) && ($unit!~/\w/) && ($answerunit=~/\w/)) {
  363:              $appendunit=$answerunit;
  364:           }
  365: # Do the math for the student if allowed
  366:           if ($allowalgebra) {
  367:              $element=&cas('maxima',$element);
  368:           }
  369:           if ($appendunit ne '') {
  370:               $element .= " $appendunit";
  371:           }  
  372:           &LONCAPA_INTERNAL_DEBUG("Made response element :$element:");
  373:        }
  374:     }
  375:     
  376:     foreach my $thisanswer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
  377: 	if (!defined($thisanswer)) {
  378: 	    return ('ERROR','answer was undefined');
  379: 	}
  380:     }
  381: 
  382:     my $allow_control_char = 0;
  383:     my $control_chars_removed = 0;
  384:     my $ansstring;
  385:     if ($type eq 'cs' || $type eq 'ci') {
  386:         if (ref($LONCAPA::CAPAresponse_answer->{'answers'}) eq 'ARRAY') {
  387:             foreach my $strans (@{$LONCAPA::CAPAresponse_answer->{'answers'}}) {
  388:                 if (ref($strans) eq 'ARRAY') {
  389:                     $ansstring = join("\0",@{$strans});
  390:                     foreach my $item (@{$strans}) {  
  391:                         if ($item =~ /[\000-\037]/) {
  392:                             $allow_control_char = 1;
  393:                         }
  394:                     }
  395:                 }
  396:             }
  397:         }
  398:     }
  399: 
  400: #    &LONCAPA_INTERNAL_DEBUG(&LONCAPA_INTERNAL_Dumper($responses));
  401:     my %memoized;
  402:     if ($LONCAPA::CAPAresponse_answer->{'type'}  eq 'ordered') {
  403: 	for (my $i=0; $i<scalar(@$responses);$i++) {
  404: 	    my $answer   = $LONCAPA::CAPAresponse_answer->{'answers'}[$i];
  405: 	    my $response = $responses->[$i];
  406: 	    my $key = "$answer\0$response";
  407: 	    my (@awards,@msgs);
  408: 	    for (my $j=0; $j<scalar(@$response); $j++) {
  409:                 if ($type eq 'cs' || $type eq 'ci') {
  410:                     unless ($allow_control_char) {
  411:                         if ($response->[$j] =~ /[\000-\037]/) { 
  412:                             $response->[$j] =~ s/[\000-\037]//g;
  413:                             $control_chars_removed = 1;
  414:                         }  
  415:                     }
  416:                 }
  417:                 # See if we have preprocessor for string responses
  418:                 if (($preprocess=~/\S/) && ($type eq 'cs' || $type eq 'ci'))  {
  419:                     if (defined(&$preprocess)) {
  420:                         no strict 'refs';
  421:                         $response->[$j]=&$preprocess($response->[$j]);
  422:                         use strict 'refs';
  423:                     }
  424:                 }
  425: 
  426: 		my ($award,$msg) = &caparesponse_check($answer->[$j],
  427: 						       $response->[$j]);
  428:                 if ($type eq 'cs' || $type eq 'ci') {
  429:                     $error = &verify_stringresponse($type,$award,$response->[$j],
  430:                                                     $answer->[$j]);
  431:                 }
  432: 		push(@awards,$award);
  433: 		push(@msgs,  $msg);
  434: 	    }
  435: 	    my ($award,$msg) = 
  436: 		&LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
  437: 	    $memoized{$key} = [$award,$msg];
  438: 	}
  439:     } else {
  440: 	#FIXME broken with unorder responses where one is a <value>
  441:         #      and the other is a <vector> (need to delay parse til
  442:         #      inside the loop?)
  443: 	foreach my $response (@$responses) {
  444: 	    my $response_size = scalar(@{$response});
  445: 	    foreach my $answer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
  446: 		my $key = "$answer\0$response";
  447: 		my $answer_size =  scalar(@{$answer});
  448: 		my ($award,$msg);
  449: 		if ($answer_size > $response_size) {
  450: 		    $award = 'MISSING_ANSWER';
  451: 		} elsif ($answer_size < $response_size) {
  452: 		    $award = 'EXTRA_ANSWER';
  453: 		} else {
  454: 		    my (@awards,@msgs);
  455: 		    for (my $j=0; $j<scalar(@$response); $j++) {
  456:                         if ($type eq 'cs' || $type eq 'ci') {
  457:                             unless ($allow_control_char) {
  458:                                 if ($response->[$j] =~ /[\000-\037]/) {
  459:                                     $response->[$j] =~ s/[\000-\037]//g;
  460:                                     $control_chars_removed = 1;
  461:                                 }
  462:                             }
  463:                         }
  464:                         # See if we have preprocessor
  465:                         if (($preprocess=~/\S/) && ($type eq 'cs' || $type eq 'ci')) {
  466:                             if (defined(&$preprocess)) {
  467:                                 no strict 'refs';
  468:                                 $response->[$j]=&$preprocess($response->[$j]);
  469:                                 use strict 'refs';
  470:                             }
  471:                         }
  472: 
  473: 			my ($award,$msg) = &caparesponse_check($answer->[$j],
  474: 							       $response->[$j]);
  475:                         if ($type eq 'cs' || $type eq 'ci') {
  476:                             $error = &verify_stringresponse($type,$award,$response->[$j],
  477:                                                             $answer->[$j]);
  478:                         }
  479: 			push(@awards,$award);
  480: 			push(@msgs,  $msg);
  481: 		    }
  482: 		    ($award,$msg) = 
  483: 			&LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
  484: 		}
  485: 		$memoized{$key} = [$award,$msg];
  486: 	    }
  487: 	}
  488:     }
  489: 
  490:     my ($final_award,$final_msg);
  491:     &init_permutation(scalar(@$responses),
  492: 		      $LONCAPA::CAPAresponse_answer->{'type'});
  493: 
  494:     # possible FIXMEs
  495:     # - significant time is spent calling non-safe space routine
  496:     #   from safe space
  497:     # - early outs could be possible with classifying awards is to stratas
  498:     #   and stopping as so as hitting the top strata 
  499:     # - some early outs also might be possible with check ing the 
  500:     #   memoized hash of results (is correct even possible? etc.)
  501: 
  502:     my (@final_awards,@final_msg);
  503:     while( &get_permutations_left() ) {
  504: 	my $order = &get_next_permutation();
  505: 	my (@awards, @msgs, $i);
  506: 	foreach my $thisanswer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
  507: 	    my $key = "$thisanswer\0".$responses->[$order->[$i]];
  508: 	    push(@awards,$memoized{$key}[0]);
  509: 	    push(@msgs,$memoized{$key}[1]);
  510: 	    $i++;
  511: 
  512: 	}
  513: 	&LONCAPA_INTERNAL_DEBUG(" all awards ".join(':',@awards));
  514: 
  515: 	my ($possible_award,$possible_msg) = 
  516: 	    &LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
  517: 	&LONCAPA_INTERNAL_DEBUG(" pos awards ".$possible_award);
  518: 	push(@final_awards,$possible_award);
  519: 	push(@final_msg,$possible_msg);
  520:     }
  521: 
  522:     &LONCAPA_INTERNAL_DEBUG(" all final_awards ".join(':',@final_awards));
  523:     my ($final_award,$final_msg) = 
  524: 	&LONCAPA_INTERNAL_FINALIZEAWARDS(\@final_awards,\@final_msg,undef,1);
  525:     return ($final_award,$final_msg,$error,$control_chars_removed,$ansstring);
  526: }
  527: 
  528: sub verify_stringresponse {
  529:     my ($type,$award,$resp,$ans) = @_;
  530:     return if ($award eq 'EXACT_ANS');
  531:     my $error;
  532:     if ($resp =~ /^\s|\s$/) {
  533:         $resp =~ s{^\s+|\s+$}{}g;
  534:     }
  535:     if ($ans =~ /^\s|\s$/) {
  536:         $ans =~ s{^\s+|\s+$}{}g;
  537:     }
  538:     if ($type eq 'ci') {
  539:         $resp = lc($resp);
  540:         $ans = lc($ans);
  541:     }
  542:     if ($resp eq $ans) {
  543:         if ($award eq 'INCORRECT') {
  544:             $error = 'MISGRADED';
  545:         }
  546:     }
  547:     return $error;
  548: }
  549: 
  550: sub cas {
  551:     my ($system,$input,$library)=@_;
  552:     my $output;
  553:     my $dump;
  554:     if ($system eq 'maxima') {
  555:        $output=&maxima_eval($input,$library);
  556:     } elsif ($system eq 'R') {
  557:        ($output,$dump)=&r_eval($input,$library,0);
  558:     } else {
  559:        $output='Error: unrecognized CAS';
  560:     }
  561:     return $output;
  562: }
  563: 
  564: sub cas_hashref {
  565:     my ($system,$input,$library)=@_;
  566:     if ($system eq 'maxima') {
  567:        return 'Error: unsupported CAS';
  568:     } elsif ($system eq 'R') {
  569:        return &r_eval($input,$library,1);
  570:     } else {
  571:        return 'Error: unrecognized CAS';
  572:     }
  573: }
  574: 
  575: #
  576: # cas_hashref_entry takes a list of indices and gets the entry in a hash generated by Rreturn.
  577: # Call: cas_hashref_entry(Rvalue, index1, index2, ...) where Rvalue is a hash returned by Rreturn.
  578: # Rentry will return the first scalar value it encounters (ignoring excess indices).
  579: # If an invalid key is given, it returns undef.
  580: #
  581: sub cas_hashref_entry {
  582:     return &Rentry(@_);
  583: }
  584: 
  585: #
  586: # cas_hashref_array takes a list of indices and gets a column array from a hash generated by Rreturn.
  587: # Call: cas_hashref_array(Rvalue, index1, index2, ...) where Rvalue is a hash returned by Rreturn.
  588: # If an invalid key is given, it returns undef.
  589: #
  590: sub cas_hashref_array {
  591:     return &Rarray(@_);
  592: }
  593: 
  594: sub tex {
  595:     if ( $external::target eq "tex" ) {
  596: 	return $_[0];
  597:     } else {
  598: 	return $_[1];
  599:     }
  600: }
  601: 
  602: sub var_in_tex {
  603:     if ( $external::target eq "tex" ) {
  604: 	return $_[0];
  605:     } else {
  606: 	return "";
  607:     }
  608: }
  609: 
  610: sub web {
  611:     if ( $external::target eq "tex" ) {
  612: 	return $_[1];
  613:     } else {
  614: 	if ( $external::target eq "web" || $external::target eq "answer") {
  615: 	    return $_[2];
  616: 	} else {
  617: 	    return $_[0];
  618: 	}
  619:     }
  620: }
  621: 
  622: sub html {
  623:     if ( $external::target eq "web" ) {
  624: 	return shift;
  625:     }
  626: }
  627: 
  628: sub hinton {
  629:     return 0;
  630: }
  631: 
  632: sub random {
  633:     my ($start,$end,$step)=@_;
  634:     if ( ! $hidden::RANDOMINIT ) {
  635: 	if ($external::randomseed == 0) { $external::randomseed=1; }
  636: 	if ($external::randomseed =~/,/) {
  637: 	    my ($num1,$num2)=split(/,/,$external::randomseed);
  638: 	    &random_set_seed(1,abs($num1));
  639: 	} elsif ($external::randomseed =~/:/) {
  640: 	    my ($num1,$num2)=split(/:/,$external::randomseed);
  641: 	    &random_set_seed(abs($num1),abs($num2));
  642: 	} else {
  643: 	    &random_set_seed(1,int(abs($external::randomseed)));
  644: 	}
  645: 	&math_random_uniform();
  646: 	$hidden::RANDOMINIT=1;
  647:     }
  648:     if (!defined($step)) { $step=1; }
  649:     my $num=1+int(($end-$start)/$step);
  650:     my $result=$start + int(&math_random_uniform() * $num)*$step;
  651:     return $result;
  652: }
  653: 
  654: sub random_normal {
  655:     my ($item_cnt,$seed,$av,$std_dev) = @_;
  656:     my @oldseed=&random_get_seed();
  657:     my @retArray;
  658:     &random_set_seed_from_phrase($seed);
  659:     @retArray=&math_random_normal($item_cnt,$av,$std_dev);
  660:     &random_set_seed(@oldseed);
  661:     return @retArray;
  662: }
  663: 
  664: sub random_beta {
  665:     my ($item_cnt,$seed,$aa,$bb) = @_;
  666:     my @oldseed=&random_get_seed();
  667:     my @retArray;
  668:     &random_set_seed_from_phrase($seed);
  669:     @retArray=&math_random_beta($item_cnt,$aa,$bb);
  670:     &random_set_seed(@oldseed);
  671:     return @retArray;
  672: }
  673: 
  674: sub random_gamma {
  675:     my ($item_cnt,$seed,$a,$r) = @_;
  676:     my @oldseed=&random_get_seed();
  677:     my @retArray;
  678:     &random_set_seed_from_phrase($seed);
  679:     @retArray=&math_random_gamma($item_cnt,$a,$r);
  680:     &random_set_seed(@oldseed);
  681:     return @retArray;
  682: }
  683: 
  684: sub random_exponential {
  685:     my ($item_cnt,$seed,$av) = @_;
  686:     my @oldseed=&random_get_seed();
  687:     my @retArray;
  688:     &random_set_seed_from_phrase($seed);
  689:     @retArray=&math_random_exponential($item_cnt,$av);
  690:     &random_set_seed(@oldseed);
  691:     return @retArray;
  692: }
  693: 
  694: sub random_poisson {
  695:     my ($item_cnt,$seed,$mu) = @_;
  696:     my @oldseed=&random_get_seed();
  697:     my @retArray;
  698:     &random_set_seed_from_phrase($seed);
  699:     @retArray=&math_random_poisson($item_cnt,$mu);
  700:     &random_set_seed(@oldseed);
  701:     return @retArray;
  702: }
  703: 
  704: sub random_chi {
  705:     my ($item_cnt,$seed,$df) = @_;
  706:     my @oldseed=&random_get_seed();
  707:     my @retArray;
  708:     &random_set_seed_from_phrase($seed);
  709:     @retArray=&math_random_chi_square($item_cnt,$df);
  710:     &random_set_seed(@oldseed);
  711:     return @retArray;
  712: }
  713: 
  714: sub random_noncentral_chi {
  715:     my ($item_cnt,$seed,$df,$nonc) = @_;
  716:     my @oldseed=&random_get_seed();
  717:     my @retArray;
  718:     &random_set_seed_from_phrase($seed);
  719:     @retArray=&math_random_noncentral_chi_square($item_cnt,$df,$nonc);
  720:     &random_set_seed(@oldseed);
  721:     return @retArray;
  722: }
  723: 
  724: sub random_f {
  725:     my ($item_cnt,$seed,$dfn,$dfd) = @_;
  726:     my @oldseed=&random_get_seed();
  727:     my @retArray;
  728:     &random_set_seed_from_phrase($seed);
  729:     @retArray=&math_random_f($item_cnt,$dfn,$dfd);
  730:     &random_set_seed(@oldseed);
  731:     return @retArray;
  732: }
  733: 
  734: sub random_noncentral_f {
  735:     my ($item_cnt,$seed,$dfn,$dfd,$nonc) = @_;
  736:     my @oldseed=&random_get_seed();
  737:     my @retArray;
  738:     &random_set_seed_from_phrase($seed);
  739:     @retArray=&math_random_noncentral_f($item_cnt,$dfn,$dfd,$nonc);
  740:     &random_set_seed(@oldseed);
  741:     return @retArray;
  742: }
  743: 
  744: sub random_multivariate_normal {
  745:     my ($item_cnt,$seed,$mean,$covar) = @_;
  746:     my @oldseed=&random_get_seed();
  747:     &random_set_seed_from_phrase($seed);
  748:     my @retArray=&math_random_multivariate_normal($item_cnt,@$mean,@$covar);
  749:     &random_set_seed(@oldseed);
  750:     return @retArray;
  751: }
  752: 
  753: sub random_multinomial {
  754:     my ($item_cnt,$seed,@p) = @_;
  755:     my @oldseed=&random_get_seed();
  756:     my @retArray;
  757:     &random_set_seed_from_phrase($seed);
  758:     my @retArray=&math_random_multinomial($item_cnt,@p);
  759:     &random_set_seed(@oldseed);
  760:     return @retArray;
  761: }
  762: 
  763: sub random_permutation {
  764:     my ($seed,@inArray) = @_;
  765:     my @oldseed=&random_get_seed();
  766:     my @retArray;
  767:     &random_set_seed_from_phrase($seed);
  768:     @retArray=&math_random_permutation(@inArray);
  769:     &random_set_seed(@oldseed);
  770:     return @retArray;
  771: }
  772: 
  773: sub random_uniform {
  774:     my ($item_cnt,$seed,$low,$high) = @_;
  775:     my @oldseed=&random_get_seed();
  776:     my @retArray;
  777:     &random_set_seed_from_phrase($seed);
  778:     @retArray=&math_random_uniform($item_cnt,$low,$high);
  779:     &random_set_seed(@oldseed);
  780:     return @retArray;
  781: }
  782: 
  783: sub random_uniform_integer {
  784:     my ($item_cnt,$seed,$low,$high) = @_;
  785:     my @oldseed=&random_get_seed();
  786:     my @retArray;
  787:     &random_set_seed_from_phrase($seed);
  788:     @retArray=&math_random_uniform_integer($item_cnt,$low,$high);
  789:     &random_set_seed(@oldseed);
  790:     return @retArray;
  791: }
  792: 
  793: sub random_binomial {
  794:     my ($item_cnt,$seed,$nt,$p) = @_;
  795:     my @oldseed=&random_get_seed();
  796:     my @retArray;
  797:     &random_set_seed_from_phrase($seed);
  798:     @retArray=&math_random_binomial($item_cnt,$nt,$p);
  799:     &random_set_seed(@oldseed);
  800:     return @retArray;
  801: }
  802: 
  803: sub random_negative_binomial {
  804:     my ($item_cnt,$seed,$ne,$p) = @_;
  805:     my @oldseed=&random_get_seed();
  806:     my @retArray;
  807:     &random_set_seed_from_phrase($seed);
  808:     @retArray=&math_random_negative_binomial($item_cnt,$ne,$p);
  809:     &random_set_seed(@oldseed);
  810:     return @retArray;
  811: }
  812: 
  813: sub abs { CORE::abs(shift) }
  814: sub sin { CORE::sin(shift) }
  815: sub cos { CORE::cos(shift) }
  816: sub exp { CORE::exp(shift) }
  817: sub int { CORE::int(shift) }
  818: sub log { CORE::log(shift) }
  819: sub ln { CORE::log(shift) }
  820: sub atan2 { CORE::atan2($_[0],$_[1]) }
  821: sub sqrt { CORE::sqrt(shift) }
  822: 
  823: sub tan  { CORE::sin($_[0]) / CORE::cos($_[0]) }
  824: #sub atan { atan2($_[0], 1); }
  825: #sub acos { atan2(sqrt(1 - $_[0] * $_[0]), $_[0] ); }
  826: #sub asin { atan2($_[0], sqrt(1- $_[0] * $_[0]) );  }
  827: 
  828: sub log10 { CORE::log($_[0])/CORE::log(10); }
  829: 
  830: sub factorial {
  831:     my $input = CORE::int(shift);
  832:     return "Error - unable to take factorial of an negative number ($input)" if $input < 0;
  833:     return "Error - factorial result is greater than system limit ($input)" if $input > 170;
  834:     return 1 if $input == 0;
  835:     my $result = 1; 
  836:     for (my $i=2; $i<=$input; $i++) { $result *= $i }
  837:     return $result;
  838: }
  839: 
  840: sub sgn {
  841:     return -1 if $_[0] < 0;
  842:     return 0 if $_[0] == 0;
  843:     return 1 if $_[0] > 0;
  844: }
  845: 
  846: sub min {
  847:     my @sorted = sort { $a <=> $b || $a cmp $b } @_;
  848:     return shift @sorted;
  849: }
  850: 
  851: sub max {
  852:     my @sorted = sort { $a <=> $b || $a cmp $b } @_;
  853:     return pop @sorted;
  854: }
  855: 
  856: sub roundto {
  857:     my ($input,$n) = @_;
  858:     return sprintf('%.'.$n.'f',$input);
  859: }
  860: 
  861: sub to_string {
  862:     my ($input,$n) = @_;
  863:     return sprintf($input) if $n eq "";
  864:     $n = '.'.$n if $n !~ /^\./;
  865:     return sprintf('%'.$n,$input) if $n ne "";
  866: }
  867: 
  868: sub sub_string {
  869:     my ($str,$start,$len) = @_;
  870:     return substr($str,$start-1,$len);
  871: }
  872: 
  873: sub pow   {return $_[0] ** $_[1]; }
  874: sub ceil  {return (($_[0]-CORE::int($_[0]))== 0.0) ? $_[0] : (($_[0] > 0) ? (CORE::int($_[0])+ 1) : CORE::int($_[0])); }
  875: sub floor  {return (($_[0]-CORE::int($_[0]))== 0.0) ? $_[0] : (($_[0] > 0) ? CORE::int($_[0]) : (CORE::int($_[0])-1)); }
  876: #sub floor {return int($_[0]); }
  877: 
  878: sub format {
  879:     my ($value,$fmt)=@_;
  880:     my ($dollarmode,$commamode,$alwaysperiod,$options);
  881:     if ($fmt =~ /^([^\d]*)(.*)/) { $options=$1; $fmt=$2; } 
  882:     #if ($options =~ /\$/) { $dollamode=1; }
  883:     #if ($options =~ /,/)  { $commamode=1; }
  884:     if ($options =~ /\./) { $alwaysperiod=1; }
  885:     my $result;
  886:     if ($fmt=~/s$/i) {
  887: 	$result=&format_significant_figures($value,$fmt);
  888:     } else {
  889: 	$fmt=~s/e/E/g;
  890: 	$result=sprintf('%.'.$fmt,$value);
  891: 	if ($alwaysperiod && $fmt eq '0f') { $result .='.'; }
  892: 	$result=~s/(E[+-]*)0/$1/;
  893:     }
  894:     #if ($dollarmode) {$result=&dollarformat($result);}
  895:     #if ($commamode) {$result=&commaformat($result);}
  896:     return $result;
  897: }
  898: 
  899: sub chemparse {
  900:     my ($reaction) = @_;
  901:     my @tokens = split(/(\s\+|\->|<=>|<\-|\.)/,$reaction);
  902:     my $formula = '';
  903:     foreach my $token (@tokens) {
  904: 	if ($token eq '->' ) {
  905:             if ($external::target eq 'web') {
  906:                 $formula .= '&rarr; ';
  907:             } else {
  908:                 $formula .= '<m>\ensuremath{\rightarrow}</m> ';
  909: 	    }
  910: 	    next;
  911: 	}
  912: 	if ($token eq '<-' ) {
  913:             if ($external::target eq 'web') {
  914:                 $formula .= '&larr; ';
  915:             } else {
  916:                 $formula .= '<m>\ensuremath{\leftarrow}</m> ';
  917: 	    }
  918: 	    next;
  919: 	}  
  920: 	if ($token eq '<=>') {
  921: 	    if ($external::target eq 'web' &&
  922: 		&EXT('request.browser.unicode')) {
  923: 		$formula .= '&#8652; ';
  924: 	    } else {
  925: 		$formula .= &web('<=> ','<m>\ensuremath{\rightleftharpoons}</m> ',
  926: 				 '&lt;=&gt; ');
  927: 	    }
  928: 	    next;
  929: 	}
  930: 	if ($token eq '.') {
  931: 	  $formula =~ s/(\&nbsp\;| )$//;
  932: 	  $formula .= '&middot;';
  933: 	  next;
  934: 	}
  935: 	$token =~ /^\s*([\d|\/]*(?:&frac\d\d)?)(.*)/;
  936:         $formula .= $1 if ($1 ne '1');  # stoichiometric coefficient
  937: 	
  938: 	my $molecule = $2;
  939: 	# subscripts
  940: 	$molecule =~ s|(?<=[a-zA-Z\)\]\s])(\d+)|<sub>$1</sub>|g;
  941: 	# superscripts
  942: 	$molecule =~ s|\^(\d*[+\-]*)|<sup>$1</sup>|g;
  943: 	# strip whitespace
  944: 	$molecule =~ s/\s*//g;
  945: 	# forced space
  946: 	$molecule =~ s/_/ /g;
  947: 	$molecule =~ s/-/&minus;/g;
  948: 	$formula .= $molecule.'&nbsp;';
  949:     }
  950:     # get rid of trailing space
  951:     $formula =~ s/(\&nbsp\;| )$//;
  952:     return &xmlparse($formula);
  953: }
  954: 
  955: sub prettyprint {
  956:     my ($value,$fmt,$target)=@_;
  957:     my $result;
  958:     if (!$target) { $target = $external::target; }
  959:     if ($fmt =~ /chem/i) { return(&chemparse($value)); }
  960:     my ($dollarmode,$commamode,$alwaysperiod,$options);
  961:     if ($fmt =~ /^([^\d]*)(.*)/) { $options=$1; $fmt=$2; } 
  962:     if ($options =~ /\$/) { $dollarmode=1; }
  963:     if ($options =~ /,/)  { $commamode=1; }
  964:     if ($options =~ /\./) { $alwaysperiod=1; }
  965:     if ($fmt=~/s$/i) {
  966: 	$value=&format_significant_figures($value,$fmt);
  967:     } elsif ($fmt) {
  968: 	$value=sprintf('%.'.$fmt,$value);
  969:     }
  970:     if ($alwaysperiod && $fmt eq '0f') {
  971: 	if ($target eq 'tex') {
  972: 	    $value .='\\ensuremath{.}';
  973: 	} else {
  974: 	    $value .='.';
  975: 	}
  976:     }
  977:     if ($value =~ /([0-9\.\-\+]+)E([0-9\-\+]+)/i ) {
  978: 	my $frac=$1;
  979: 	if ($dollarmode) { $frac=&dollarformat($frac); }
  980: 	if ($commamode) { $frac=&commaformat($frac); }
  981: 	my $exponent=$2;
  982: 	$exponent=~s/^\+0*//;
  983: 	$exponent=~s/^-0*/-/;
  984: 	$exponent=~s/^-0*/-/;
  985: 	if ($exponent eq '-') { undef($exponent); }
  986: 	if ($exponent) {
  987: 	    if ($target eq 'web') {
  988: 		$result=$frac.'&#215;10<sup>'.$exponent.'</sup>';
  989: 	    } elsif ($target eq 'tex') {
  990: 		$result='\ensuremath{'.$frac.'\times 10^{'.$exponent.'}}';
  991: 	    } else {
  992: 		$result=$value;
  993: 	    }
  994: 	} else {
  995: 	    $result=$frac;
  996: 	}
  997:     } else {
  998: 	$result=$value;
  999: 	if    ($dollarmode) { $result=&dollarformat($result,$target); }
 1000: 	elsif ($commamode)  { $result=&commaformat($result,$target); }
 1001:     }
 1002:     return $result;
 1003: }
 1004: 
 1005: sub commaformat {
 1006:     my ($number,$target) = @_;
 1007:     if ($number =~ /\./) {
 1008: 	while ($number =~ /([^0-9]*)([0-9]+)([^\.,][^\.,][^\.,])([,0-9]*\.[0-9]*)$/) {
 1009: 	    $number = $1.$2.','.$3.$4;
 1010: 	}
 1011:     } else {
 1012: 	while ($number =~ /^([^0-9]*)([0-9]+)([^,][^,][^,])([,0-9]*)$/) {
 1013: 	    $number = $1.$2.','.$3.$4;
 1014: 	}
 1015:     }
 1016:     return $number;
 1017: }
 1018: 
 1019: sub dollarformat {
 1020:     my ($number,$target) = @_;
 1021:     if (!$target) { $target = $external::target; }
 1022:     $number=&commaformat($number,$target);
 1023:     if ($target eq 'tex') {
 1024: 	$number='\$'.$number; #' stupid emacs
 1025:     } else {
 1026: 	$number='$'.$number; #' stupid emacs
 1027:     }
 1028:     return $number; 
 1029: }
 1030: 
 1031: # format of form ns or nS where n is an integer
 1032: sub format_significant_figures {
 1033:     my ($number,$format) = @_; 
 1034:     return '0' if ($number == 0);
 1035:     # extract number of significant figures needed
 1036:     my ($sig) = ($format =~ /(\d+)s/i);
 1037:     # arbitrary choice - suggestions ?? or throw error message?
 1038:     $sig = 3 if ($sig eq '');
 1039:     # save the minus sign
 1040:     my $sign = ($number < 0) ? '-' : '';
 1041:     $number = abs($number);
 1042:     # needed to correct for a number greater than 1 (or
 1043:     my $power = ($number < 1) ? 0 : 1;
 1044:     # could round up. Take the integer part of log10.
 1045:     my $x10 = int(log($number)/log(10));
 1046:     # find number with values left of decimal pt = # of sign figs.
 1047:     my $xsig = $number*10**($sig-$x10-$power);
 1048:     # get just digits left of decimal pt - also rounds off correctly
 1049:     my $xint  = sprintf('%.0f',$xsig);
 1050:     # save any trailing zero's
 1051:     my ($zeros) = ($xint =~ /(0+)$/);
 1052:     # return number to original magnitude
 1053:     my $numSig = $xint*10**($x10-$sig+$power);
 1054:     if ($numSig =~ /^(\d+)\.(\d+)/) {
 1055:         # insert trailing zero's if have decimal point
 1056:         my @digarray = split('',$1.$2);
 1057:         my $sigcount;
 1058:         while (@digarray > 0) {
 1059:             my $item = shift(@digarray);
 1060:             if ($item) {
 1061:                 $sigcount = 1 + @digarray;
 1062:                 last;
 1063:             }
 1064:         }
 1065:         if (($sigcount) && ($sig >= $sigcount)) {
 1066:             $zeros = substr($zeros,0,($sig - $sigcount));
 1067:         }
 1068:         $numSig =~ s/^(\d+)\.(\d+)(\e?(.*)?)$/$1\.$2$zeros$3/;
 1069:     } else {
 1070:         if ($numSig =~ /^(\d+)e([\+\-]\d+)$/i) {
 1071:             my $pre_exp = $1;
 1072:             my $exponent = $2;
 1073:             $numSig = $pre_exp.'.'.$zeros.'E'.$exponent;
 1074:         } elsif ($numSig =~ /0$/) {
 1075:             # add decimal pt for number ending with 0 and length == # of sig figs
 1076:             if (length($numSig) == $sig) {
 1077:                 $numSig.='.';
 1078:             } elsif (length($numSig) > $sig) {
 1079:                 # exponential form for number ending with 0 and length > # of sig figs
 1080:                 my $fmtsig = $sig-1;
 1081:                 if ($fmtsig) {
 1082:                     $numSig = sprintf('%.'.$fmtsig.'E',$numSig);
 1083:                 }
 1084:             } elsif (length($numSig) < $sig) {
 1085:                 $numSig.='.'.substr($zeros,0,($sig-length($numSig)));
 1086:             }
 1087:         } else {
 1088:             if (length($numSig) < $sig) {
 1089:                 $numSig.='.'.substr($zeros,0,($sig-length($numSig)));
 1090:             }
 1091:         }
 1092:     }
 1093:     # return number with sign
 1094:     return $sign.$numSig;
 1095: }
 1096: 
 1097: sub map {
 1098:     my ($phrase,$dest,$source)=@_;
 1099:     my @oldseed=&random_get_seed();
 1100:     my @seed = &random_seed_from_phrase($phrase);
 1101:     &random_set_seed(@seed);
 1102:     my $destct = scalar(@$dest);
 1103:     if (!$source) {
 1104: 	my @output;
 1105: 	my @idx = &math_random_permuted_index($destct);
 1106: 	my $ctr = 0;
 1107: 	while ($ctr < $destct) {
 1108: 	    $output[$ctr] = $$dest[$idx[$ctr]];
 1109: 	    $ctr++;
 1110: 	}
 1111:         &random_set_seed(@oldseed);
 1112: 	return @output;
 1113:     } else {
 1114: 	my $num = scalar(@$source);
 1115: 	my @idx = &math_random_permuted_index($num);
 1116: 	my $ctr = 0;
 1117: 	my $tot = $num;
 1118: 	$tot = $destct if $destct < $num;
 1119: 	if (ref($$dest[0])) {
 1120: 	    while ($ctr < $tot) {
 1121: 		${$$dest[$ctr]} = $$source[$idx[$ctr]];
 1122: 	        $ctr++;
 1123:             }
 1124:         } else {
 1125: 	    while ($ctr < $tot) {
 1126: 		$$dest[$ctr] = $$source[$idx[$ctr]];
 1127: 		$ctr++;
 1128: 	    }
 1129: 	}
 1130:     }
 1131:     &random_set_seed(@oldseed);
 1132:     return '';
 1133: }
 1134: 
 1135: sub rmap {
 1136:     my ($phrase,$dest,$source)=@_;
 1137:     my @oldseed=&random_get_seed();
 1138:     my @seed = &random_seed_from_phrase($phrase);
 1139:     &random_set_seed(@seed);
 1140:     my $destct = scalar(@$dest);
 1141:     if (!$source) {
 1142: 	my @idx = &math_random_permuted_index($destct);
 1143: 	my $ctr = 0;
 1144: 	my @r_idx;
 1145: 	while ($ctr < $destct) {
 1146: 	    $r_idx[$idx[$ctr]] = $ctr;
 1147: 	    $ctr++;
 1148: 	}
 1149: 	my @output;
 1150: 	$ctr = 0;
 1151: 	while ($ctr < $destct) {
 1152: 	    $output[$ctr] = $$dest[$r_idx[$ctr]];
 1153: 	    $ctr++;
 1154: 	}
 1155:         &random_set_seed(@oldseed);
 1156: 	return @output;
 1157:     } else {
 1158: 	my $num = scalar(@$source);
 1159: 	my @idx = &math_random_permuted_index($num);
 1160: 	my $ctr = 0;
 1161: 	my $tot = $num;
 1162: 	$tot = $destct if $destct < $num;
 1163: 	my @r_idx;
 1164: 	while ($ctr < $tot) {
 1165: 	    $r_idx[$idx[$ctr]] = $ctr;
 1166: 	    $ctr++;
 1167: 	}
 1168: 	$ctr = 0;
 1169: 	if (ref($$dest[0])) {
 1170: 	    while ($ctr < $tot) {
 1171: 		${$$dest[$ctr]} = $$source[$r_idx[$ctr]];
 1172: 	        $ctr++;
 1173:             }
 1174:         } else {
 1175: 	    while ($ctr < $tot) {
 1176: 		$$dest[$ctr] = $$source[$r_idx[$ctr]];
 1177: 		$ctr++;
 1178: 	    }
 1179: 	}
 1180:     }
 1181:     &random_set_seed(@oldseed);
 1182:     return '';
 1183: }
 1184: 
 1185: sub capa_id { return }
 1186: 
 1187: sub problem { return }
 1188: 
 1189: sub name{
 1190:     my $fullname = &EXT('environment.lastname').', '.&EXT('environment.firstname').' '.&EXT('environment.middlename');
 1191:     $fullname = "" if $fullname eq ",  ";
 1192:     $fullname =~ s/\%2d/-/g;
 1193:     return $fullname;
 1194: }
 1195: 
 1196: sub student_number { 
 1197:     my $id = &EXT('environment.id');
 1198:     $id = '' if $id eq "";
 1199:     return $id;
 1200: }
 1201: 
 1202: sub class {
 1203:     my $course = &EXT('course.description');
 1204:     $course = '' if $course eq "";
 1205:     return $course;
 1206: }
 1207: 
 1208: sub classid {
 1209:     my $courseid = &EXT('request.course.id');
 1210:     $courseid = '' if $courseid eq "";
 1211:     return $courseid;
 1212: }
 1213: 
 1214: sub firstname {
 1215:     my $firstname = &EXT('environment.firstname');
 1216:     $firstname = '' if $firstname eq "";
 1217:     return $firstname;
 1218: }
 1219: 
 1220: sub middlename {
 1221:     my $middlename = &EXT('environment.middlename');
 1222:     $middlename = '' if $middlename eq "";
 1223:     return $middlename;
 1224: }
 1225: 
 1226: sub lastname {
 1227:     my $lastname = &EXT('environment.lastname');
 1228:     $lastname = '' if $lastname eq "";
 1229:     return $lastname;
 1230: }
 1231: 
 1232: sub sec { 
 1233:     my $sec = &EXT('request.course.sec');
 1234:     $sec = '' if $sec eq "";
 1235:     return $sec;
 1236: }
 1237: 
 1238: sub submission {
 1239:    my ($partid,$responseid,$subnumber,$encode,$cleanupnum,$mapalias)=@_;
 1240:    my $sub='';
 1241:    if ($subnumber) { $sub=$subnumber.':'; }
 1242:    my $output =
 1243:        &EXT('user.resource.'.$sub.'resource.'.$partid.'.'.$responseid.'.submission',$mapalias);
 1244:    if (ref($output) eq 'ARRAY') {
 1245:        my @items = @{$output};
 1246:        if ($encode) {
 1247:            @items = map { &encode_response($_); } @items;
 1248:        }
 1249:        if (ref($cleanupnum) eq 'HASH') {
 1250:            @items = map { &cleanup_numerical_response($cleanupnum,$_); } @items;
 1251:        }
 1252:        return \@items;
 1253:    } else {
 1254:        if ($encode) {
 1255:            $output = &encode_response($output);
 1256:        }
 1257:        if (ref($cleanupnum) eq 'HASH') {
 1258:            $output = &cleanup_numerical_response($cleanupnum,$output);
 1259:        }
 1260:        return $output;
 1261:    }
 1262: }
 1263: 
 1264: sub encode_response {
 1265:     my ($value) = @_;
 1266:     $value =~ s/&/&amp;/g;
 1267:     $value =~ s/</&lt;/g;
 1268:     $value =~ s/>/&gt;/g;
 1269:     $value =~ s/"/&quot;/g;
 1270:     return $value;
 1271: }
 1272: 
 1273: sub cleanup_numerical_response {
 1274:     my ($cleanupnum,$value) = @_;
 1275:     if (ref($cleanupnum) eq 'HASH') {
 1276:         if ($cleanupnum->{exponent}) {
 1277:             if ($value =~ m{^(.*)[\*xX]\s*10\s*\^\s*(\+|\-)?\s*(\d+)(.*)$}) {
 1278:                 my $pre_exp = $1;
 1279:                 my $sign = $2;
 1280:                 my $exponent = $3;
 1281:                 my $post_exp = $4;
 1282:                 if ($pre_exp !~ /\./) {
 1283:                     $pre_exp .= '.';
 1284:                 }
 1285:                 if ($sign eq '') {
 1286:                     $sign = '+';
 1287:                 }
 1288:                 $value = $pre_exp.'E'.$sign.$exponent.$post_exp;
 1289:             }
 1290:         }
 1291:         if ($cleanupnum->{comma}) {
 1292:             $value =~ s{(\d+),(\d+)}{$1$2};
 1293:         }
 1294:         if ($cleanupnum->{letterforzero}) {
 1295:             $value =~ s/^\s*o(\.\d+)/0$1/i;
 1296:         }
 1297:         if ($cleanupnum->{spaces}) {
 1298:             $value =~ s{^\s+|\s+$}{}g;
 1299:             if ($value =~ m{^(.*)\.\s+(\d+)(.*)$}) {
 1300:                 my $pre_pt = $1;
 1301:                 my $decimal = $2;
 1302:                 my $post_dec = $3;
 1303:                 $value = $pre_pt.'.'.$decimal.$post_dec;
 1304:             }
 1305:         }
 1306:         if ($cleanupnum->{format} =~ /^\d+s$/i) {
 1307:             $value = &format_significant_figures($value,$cleanupnum->{format});
 1308:         }
 1309:     }
 1310:     return $value;
 1311: }
 1312: 
 1313: sub currentpart {
 1314:    return $external::part;
 1315: }
 1316: 
 1317: sub eval_time {
 1318:    my ($timestamp)=@_;
 1319:    unless ($timestamp) { return ''; }
 1320:    return &locallocaltime($timestamp);
 1321: }
 1322: 
 1323: sub open_date { 
 1324:     my ($partid)=@_;
 1325:     unless ($partid) { $partid=0; }
 1326:     return &eval_time(&EXT('resource.'.$partid.'.opendate'));
 1327: }
 1328: 
 1329: sub due_date {
 1330:     my ($partid)=@_;
 1331:     unless ($partid) { $partid=0; } 
 1332:     return &eval_time(&EXT('resource.'.$partid.'.duedate'));
 1333: }
 1334: 
 1335: sub answer_date { 
 1336:     my ($partid)=@_;
 1337:     unless ($partid) { $partid=0; }
 1338:     return &eval_time(&EXT('resource.'.$partid.'.answerdate'));
 1339: }
 1340: 
 1341: sub open_date_epoch {
 1342:     my ($partid)=@_;
 1343:     unless ($partid) { $partid=0; }
 1344:     return &EXT('resource.'.$partid.'.opendate');
 1345: }
 1346: 
 1347: sub due_date_epoch {
 1348:     my ($partid)=@_;
 1349:     unless ($partid) { $partid=0; }
 1350:     return &EXT('resource.'.$partid.'.duedate');
 1351: }
 1352: 
 1353: sub answer_date_epoch {
 1354:     my ($partid)=@_;
 1355:     unless ($partid) { $partid=0; }
 1356:     return &EXT('resource.'.$partid.'.answerdate');
 1357: }
 1358: 
 1359: sub parameter_setting {
 1360:     my ($which,$partid)=@_;
 1361:     unless ($partid) { $partid=0; }
 1362:     return &EXT('resource.'.$partid.'.'.$which);
 1363: }
 1364: 
 1365: sub stored_data {
 1366:     my ($which,$partid)=@_;
 1367:     unless ($partid) { $partid=0; }
 1368:     return &EXT('user.resource.resource.'.$partid.'.'.$which);
 1369: }
 1370: 
 1371: sub wrong_bubbles {
 1372:     my ($correct,$lower,$upper,$step,@given)=@_;
 1373:     my @array=();
 1374:     my %hash=();
 1375:     foreach my $new (@given) {
 1376:         $hash{$new}=1;
 1377:     }
 1378:     my $num=int(&parameter_setting('numbubbles',&currentpart()));
 1379:     unless ($num) { $num=8; }
 1380:     if ($num>1) {
 1381:         for (my $i=0;$i<=500;$i++) {
 1382:             my $new=&random($lower,$upper,$step);
 1383:             if ($hash{$new}) { next; }
 1384:             if (abs($new-$correct)<$step) { next; }
 1385:             $hash{$new}=1;
 1386:             @array=keys(%hash);
 1387:             if ($#array+2>=$num) { last; }
 1388:         }
 1389:     }
 1390:     return @array;
 1391: }
 1392: 
 1393: sub array_moments {
 1394:     my @input=@_;
 1395:     my (@output,$N);
 1396:     $N=scalar (@input);
 1397:     $output[0]=$N;
 1398:     if ($N <= 1) {
 1399: 	$output[1]=$input[0];
 1400: 	$output[1]="Input array not defined" if ($N == 0);
 1401: 	$output[2]="variance undefined for N<=1";
 1402: 	$output[3]="skewness undefined for N<=1";
 1403: 	$output[4]="kurtosis undefined for N<=1";
 1404: 	return @output;
 1405:     }
 1406:     my $sum=0;
 1407:     foreach my $line (@input) {
 1408: 	$sum+=$line;
 1409:     }
 1410:     $output[1] = $sum/$N;
 1411:     my ($x,$sdev,$var,$skew,$kurt) = 0;
 1412:     foreach my $line (@input) {
 1413: 	$x=$line-$output[1];
 1414: 	$var+=$x**2;
 1415: 	$skew+=$x**3;
 1416: 	$kurt+=$x**4;
 1417:     }
 1418:     $output[2]=$var/($N-1);
 1419:     $sdev=CORE::sqrt($output[2]);
 1420:     if ($sdev == 0) {
 1421: 	$output[3]="inf-variance=0";
 1422: 	$output[4]="inf-variance=0";
 1423: 	return @output;
 1424:     }
 1425:     $output[3]=$skew/($sdev**3*$N);
 1426:     $output[4]=$kurt/($sdev**4*$N)-3;
 1427:     return @output;
 1428: }
 1429: 
 1430: sub choose {
 1431:     my $num = $_[0];
 1432:     return $_[$num];
 1433: }
 1434: 
 1435: #&sum1(1,$x,sub { &sum1($_[0],2*$_[0], sub { fact($_[0])**2 })});
 1436: #sub sum1 {
 1437: #    my ($start,$end,$sub)=@_;
 1438: #    my $sum=0;
 1439: #    for (my $i=$start;$i<=$end;$i++) {
 1440: #        $sum+=&$sub($i);
 1441: #    }
 1442: #    return $sum
 1443: #}
 1444: 
 1445: #&sum2('a',1,$x,'&sum2(\'b\',$a,2*$a, \'&factorial($b)**2\')');
 1446: #sub sum2 {
 1447: #    my ($varname,$start,$end,$line)=@_;
 1448: #    my $sum=0;
 1449: #    for (my $i=$start;$i<=$end;$i++) {
 1450: #	my $func=sub {
 1451: #	    eval("\$".$varname."=$i");
 1452: #	    eval($line);
 1453: #	};
 1454: #        $sum+=&$func($i);
 1455: #    }
 1456: #    return $sum
 1457: #}
 1458: 
 1459: # expiremental idea
 1460: sub proper_path {
 1461:     my ($path)=@_;
 1462:     if ( $external::target eq "tex" ) {
 1463: 	return '/home/httpd/html'.$path;
 1464:     } else {
 1465: 	return $path;
 1466:     }
 1467: }
 1468: 
 1469: sub input_id {
 1470:     my ($part_id, $response_id, $textline_id) = @_;
 1471:     return 'HWVAL_'.$part_id.'_'.$response_id.'_'.$textline_id;
 1472: }
 1473: 

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