Annotation of loncom/homework/default_homework.lcpm, revision 1.166
1.42 albertel 1: # The LearningOnline Network with CAPA
1.1 harris41 2: # used by lonxml::xmlparse() as input variable $safeinit to Apache::run::run()
1.42 albertel 3: #
1.166 ! raeburn 4: # $Id: default_homework.lcpm,v 1.165 2014/06/24 17:02:33 raeburn Exp $
1.42 albertel 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: #
1.20 harris41 28: #
1.76 albertel 29:
1.25 albertel 30: #init some globals
1.38 albertel 31: $hidden::RANDOMINIT=0;
1.22 ng 32: $pi=atan2(1,1)*4;
33: $rad2deg=180.0/$pi;
34: $deg2rad=$pi/180.0;
1.44 matthew 35: $"=' ';
1.116 albertel 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--;
1.117 albertel 61: return \@order;
1.116 albertel 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--;
1.117 albertel 95: return(\@order);
1.116 albertel 96: }
97:
98: sub get_permutations_left {
99: return $num_left;
100: }
101: }
1.3 albertel 102:
1.91 albertel 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:
1.117 albertel 129:
1.7 albertel 130: sub caparesponse_check {
1.74 albertel 131: my ($answer,$response)=@_;
1.73 albertel 132: #not properly used yet: calc
133: #not to be used: $ans_fmt
1.74 albertel 134: my $type=$LONCAPA::CAPAresponse_args{'type'};
135: my $tol=$LONCAPA::CAPAresponse_args{'tol'};
136: my $sig=$LONCAPA::CAPAresponse_args{'sig'};
1.88 albertel 137: my $ans_fmt=$LONCAPA::CAPAresponse_args{'format'};
1.74 albertel 138: my $unit=$LONCAPA::CAPAresponse_args{'unit'};
139: my $calc=$LONCAPA::CAPAresponse_args{'calc'};
140: my $samples=$LONCAPA::CAPAresponse_args{'samples'};
1.73 albertel 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
1.116 albertel 147:
1.73 albertel 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: }
1.116 albertel 155:
1.100 albertel 156: if ($type eq 'cs' || $type eq 'ci') {
1.130 www 157: #for string answers make sure all places spaces occur, there is
1.76 albertel 158: #really only 1 space, in both the answer and the response
159: $answer=~s/ +/ /g;
160: $response=~s/ +/ /g;
1.100 albertel 161: } elsif ($type eq 'mc') {
162: $answer=~s/[\s,]//g;
163: $response=~s/[\s,]//g;
1.76 albertel 164: }
1.91 albertel 165: if ($type eq 'float' && $unit=~/\$/) {
1.126 www 166: if ($response!~/^\$|\$$/) { return ('NO_UNIT', undef); }
1.88 albertel 167: $response=~s/\$//g;
168: }
1.91 albertel 169: if ($type eq 'float' && $unit=~/\,/ && (&check_commas($response)<0)) {
170: return "COMMA_FAIL:";
171: }
1.88 albertel 172: $ans_fmt=~s/\W//g;
1.91 albertel 173: $unit=~s/[\$,]//g;
174: if ($type eq 'float') { $response=~s/,//g; }
1.88 albertel 175:
1.117 albertel 176: if (length($response) > 500) { return ('TOO_LONG',undef); }
1.73 albertel 177:
178: if ($type eq '' ) {
179: if ( $answer eq ($answer *1.0)) { $type = 2;
180: } else { $type = 3; }
181: } else {
1.107 albertel 182: if ($type eq 'cs') { $type = 4; }
1.73 albertel 183: elsif ($type eq 'ci') { $type = 3 }
184: elsif ($type eq 'mc') { $type = 5; }
185: elsif ($type eq 'fml') { $type = 8; }
1.107 albertel 186: elsif ($type eq 'math') { $type = 9; }
1.73 albertel 187: elsif ($type eq 'subj') { $type = 7; }
188: elsif ($type eq 'float') { $type = 2; }
189: elsif ($type eq 'int') { $type = 1; }
1.117 albertel 190: else { return ('ERROR', "Unknown type of answer: $type") }
1.73 albertel 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:
1.85 albertel 211: ($sig_ubound,$sig_lbound)=&LONCAPA_INTERNAL_get_sigrange($sig);
212:
1.73 albertel 213: my $reterror="";
1.107 albertel 214: my $result;
1.142 raeburn 215: if (($type eq '9') || ($type eq '8')) {
216: if ($response=~/\=/) {
217: return ('BAD_FORMULA','Please submit just an expression, not an equation.');
1.143 riegler 218: } elsif ($response =~ /\,/ and $response !~ /^\s*\{.*\}\s*$/) {
1.142 raeburn 219: return ('BAD_FORMULA');
220: }
221: }
1.107 albertel 222: if ($type eq '9') {
1.108 www 223: $result = &maxima_check(&maxima_cas_formula_fix($response),&maxima_cas_formula_fix($answer),\$reterror);
1.107 albertel 224: } else {
1.109 albertel 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,
1.73 albertel 230: $tol_type,$tol,
231: $sig_lbound,$sig_ubound,
232: $ans_fmt,$unit,$calc,$id_list,
233: $points,$external::randomseed,
234: \$reterror);
1.107 albertel 235: }
1.73 albertel 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'; }
1.94 albertel 247: elsif ($result =='12' && !$response) { $result='MISSING_ANSWER'; }
248: elsif ($result =='12') { $result='WANTED_NUMERIC'; }
1.77 albertel 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'; }
1.73 albertel 254: else {$result = "ERROR: Unknown Result:$result:$@:";}
255:
1.139 raeburn 256: return ($result,$reterror);
1.37 albertel 257: }
258:
1.73 albertel 259:
1.37 albertel 260: sub caparesponse_check_list {
1.119 albertel 261: my $responses=$LONCAPA::CAPAresponse_args{'response'};
1.105 albertel 262: &LONCAPA_INTERNAL_DEBUG("args ".join(':',%LONCAPA::CAPAresponse_args));
1.74 albertel 263: my $type = $LONCAPA::CAPAresponse_args{'type'};
1.133 www 264: my $answerunit=$LONCAPA::CAPAresponse_args{'unit'};
265: &LONCAPA_INTERNAL_DEBUG("Got type :$type: answer unit :$answerunit:\n");
1.157 www 266:
267: my $preprocess=$LONCAPA::CAPAresponse_args{'preprocess'};
268: $preprocess=~s/^\&//;
269:
1.119 albertel 270: my $num_input_lines =
271: scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}});
1.120 albertel 272:
273: if ($type ne '' ) {
1.119 albertel 274: if (scalar(@$responses) < $num_input_lines) {
1.105 albertel 275: return 'MISSING_ANSWER';
276: }
1.119 albertel 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) {
1.105 albertel 302: return 'EXTRA_ANSWER';
303: }
1.73 albertel 304: }
1.119 albertel 305:
1.105 albertel 306: my $unit;
1.159 www 307: my ($allowalgebra)=($LONCAPA::CAPAresponse_args{'allowalgebra'}=~/^(yes|1|on)$/i);
1.140 raeburn 308: if ($type eq 'float' || $type eq '') {
1.73 albertel 309: #for numerical problems split off the unit
1.156 www 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: }
1.157 www 317: if (defined($part1) && defined($part2)) {
1.156 www 318: $responses->[0][-1]=$part1;
319: $unit=&capa_formula_fix($part2);
1.159 www 320: my $customunits=$LONCAPA::CAPAresponse_args{'customunits'};
1.161 raeburn 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: }
1.159 www 328: }
329: }
1.73 albertel 330: }
331: }
332: $unit=~s/\s//;
1.149 raeburn 333: my $error;
1.133 www 334: foreach my $response (@$responses) {
1.157 www 335: foreach my $element (@$response) {
336: # See if we have preprocessor
337: if ($preprocess=~/\S/) {
338: if (defined(&$preprocess)) {
339: no strict 'refs';
1.158 www 340: $element=&$preprocess($element,$unit);
1.157 www 341: use strict 'refs';
342: }
343: }
1.138 raeburn 344: if (($type eq 'float') || (($type eq '') && ($unit ne ''))) {
345: $element =~ s/\s//g;
346: }
1.133 www 347: my $appendunit=$unit;
1.147 www 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
1.146 www 352: # if (($unit=~/\%/) && ($answerunit ne '%')) {
353: # $element=$element/100;
354: # $appendunit=~s/\%//;
355: # }
1.147 www 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
1.160 raeburn 362: if (($element =~ /^[0\.]+$/) && ($unit!~/\w/) && ($answerunit=~/\w/)) {
1.133 www 363: $appendunit=$answerunit;
364: }
1.156 www 365: # Do the math for the student if allowed
366: if ($allowalgebra) {
367: $element=&cas('maxima',$element);
368: }
1.148 raeburn 369: if ($appendunit ne '') {
370: $element .= " $appendunit";
371: }
1.133 www 372: &LONCAPA_INTERNAL_DEBUG("Made response element :$element:");
373: }
1.119 albertel 374: }
375:
1.117 albertel 376: foreach my $thisanswer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
377: if (!defined($thisanswer)) {
378: return ('ERROR','answer was undefined');
379: }
380: }
381:
1.150 raeburn 382: my $allow_control_char = 0;
383: my $control_chars_removed = 0;
1.151 raeburn 384: my $ansstring;
1.150 raeburn 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'}}) {
1.151 raeburn 388: if (ref($strans) eq 'ARRAY') {
1.152 raeburn 389: $ansstring = join("\0",@{$strans});
1.151 raeburn 390: foreach my $item (@{$strans}) {
391: if ($item =~ /[\000-\037]/) {
392: $allow_control_char = 1;
393: }
394: }
395: }
396: }
397: }
398: }
1.117 albertel 399:
1.121 albertel 400: # &LONCAPA_INTERNAL_DEBUG(&LONCAPA_INTERNAL_Dumper($responses));
1.117 albertel 401: my %memoized;
402: if ($LONCAPA::CAPAresponse_answer->{'type'} eq 'ordered') {
1.119 albertel 403: for (my $i=0; $i<scalar(@$responses);$i++) {
1.117 albertel 404: my $answer = $LONCAPA::CAPAresponse_answer->{'answers'}[$i];
1.119 albertel 405: my $response = $responses->[$i];
1.117 albertel 406: my $key = "$answer\0$response";
1.119 albertel 407: my (@awards,@msgs);
1.150 raeburn 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: }
1.159 www 417: # See if we have preprocessor for string responses
418: if (($preprocess=~/\S/) && ($type eq 'cs' || $type eq 'ci')) {
1.158 www 419: if (defined(&$preprocess)) {
420: no strict 'refs';
421: $response->[$j]=&$preprocess($response->[$j]);
422: use strict 'refs';
423: }
424: }
425:
1.119 albertel 426: my ($award,$msg) = &caparesponse_check($answer->[$j],
427: $response->[$j]);
1.149 raeburn 428: if ($type eq 'cs' || $type eq 'ci') {
429: $error = &verify_stringresponse($type,$award,$response->[$j],
430: $answer->[$j]);
431: }
1.119 albertel 432: push(@awards,$award);
433: push(@msgs, $msg);
434: }
435: my ($award,$msg) =
436: &LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
437: $memoized{$key} = [$award,$msg];
1.117 albertel 438: }
439: } else {
1.119 albertel 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});
1.117 albertel 445: foreach my $answer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
446: my $key = "$answer\0$response";
1.119 albertel 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++) {
1.150 raeburn 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: }
1.158 www 464: # See if we have preprocessor
1.159 www 465: if (($preprocess=~/\S/) && ($type eq 'cs' || $type eq 'ci')) {
1.158 www 466: if (defined(&$preprocess)) {
467: no strict 'refs';
468: $response->[$j]=&$preprocess($response->[$j]);
469: use strict 'refs';
470: }
471: }
472:
1.119 albertel 473: my ($award,$msg) = &caparesponse_check($answer->[$j],
474: $response->[$j]);
1.149 raeburn 475: if ($type eq 'cs' || $type eq 'ci') {
476: $error = &verify_stringresponse($type,$award,$response->[$j],
477: $answer->[$j]);
478: }
1.119 albertel 479: push(@awards,$award);
480: push(@msgs, $msg);
481: }
482: ($award,$msg) =
483: &LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
484: }
485: $memoized{$key} = [$award,$msg];
1.117 albertel 486: }
487: }
488: }
489:
1.116 albertel 490: my ($final_award,$final_msg);
1.119 albertel 491: &init_permutation(scalar(@$responses),
1.116 albertel 492: $LONCAPA::CAPAresponse_answer->{'type'});
1.117 albertel 493:
1.118 albertel 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:
1.117 albertel 502: my (@final_awards,@final_msg);
1.116 albertel 503: while( &get_permutations_left() ) {
1.117 albertel 504: my $order = &get_next_permutation();
1.116 albertel 505: my (@awards, @msgs, $i);
506: foreach my $thisanswer (@{ $LONCAPA::CAPAresponse_answer->{'answers'} }) {
1.119 albertel 507: my $key = "$thisanswer\0".$responses->[$order->[$i]];
1.117 albertel 508: push(@awards,$memoized{$key}[0]);
509: push(@msgs,$memoized{$key}[1]);
1.116 albertel 510: $i++;
1.119 albertel 511:
1.116 albertel 512: }
1.119 albertel 513: &LONCAPA_INTERNAL_DEBUG(" all awards ".join(':',@awards));
514:
1.116 albertel 515: my ($possible_award,$possible_msg) =
516: &LONCAPA_INTERNAL_FINALIZEAWARDS(\@awards,\@msgs);
1.119 albertel 517: &LONCAPA_INTERNAL_DEBUG(" pos awards ".$possible_award);
1.117 albertel 518: push(@final_awards,$possible_award);
519: push(@final_msg,$possible_msg);
1.73 albertel 520: }
1.117 albertel 521:
1.119 albertel 522: &LONCAPA_INTERNAL_DEBUG(" all final_awards ".join(':',@final_awards));
1.117 albertel 523: my ($final_award,$final_msg) =
524: &LONCAPA_INTERNAL_FINALIZEAWARDS(\@final_awards,\@final_msg,undef,1);
1.151 raeburn 525: return ($final_award,$final_msg,$error,$control_chars_removed,$ansstring);
1.149 raeburn 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;
1.7 albertel 548: }
549:
1.124 www 550: sub cas {
1.137 www 551: my ($system,$input,$library)=@_;
1.124 www 552: my $output;
1.145 www 553: my $dump;
1.124 www 554: if ($system eq 'maxima') {
1.137 www 555: $output=&maxima_eval($input,$library);
1.144 www 556: } elsif ($system eq 'R') {
1.145 www 557: ($output,$dump)=&r_eval($input,$library,0);
1.137 www 558: } else {
559: $output='Error: unrecognized CAS';
1.124 www 560: }
561: return $output;
562: }
563:
1.145 www 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:
1.4 albertel 594: sub tex {
1.73 albertel 595: if ( $external::target eq "tex" ) {
596: return $_[0];
597: } else {
598: return $_[1];
599: }
1.4 albertel 600: }
601:
1.24 ng 602: sub var_in_tex {
1.73 albertel 603: if ( $external::target eq "tex" ) {
604: return $_[0];
605: } else {
606: return "";
607: }
1.24 ng 608: }
609:
1.4 albertel 610: sub web {
1.73 albertel 611: if ( $external::target eq "tex" ) {
612: return $_[1];
1.26 ng 613: } else {
1.73 albertel 614: if ( $external::target eq "web" || $external::target eq "answer") {
615: return $_[2];
616: } else {
617: return $_[0];
618: }
1.4 albertel 619: }
620: }
621:
1.24 ng 622: sub html {
1.73 albertel 623: if ( $external::target eq "web" ) {
624: return shift;
625: }
1.24 ng 626: }
627:
1.1 harris41 628: sub hinton {
1.73 albertel 629: return 0;
1.1 harris41 630: }
631:
632: sub random {
1.61 albertel 633: my ($start,$end,$step)=@_;
634: if ( ! $hidden::RANDOMINIT ) {
635: if ($external::randomseed == 0) { $external::randomseed=1; }
636: if ($external::randomseed =~/,/) {
1.84 albertel 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);
1.61 albertel 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;
1.1 harris41 652: }
653:
1.26 ng 654: sub random_normal {
1.73 albertel 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;
1.26 ng 662: }
663:
664: sub random_beta {
1.73 albertel 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;
1.26 ng 672: }
673:
674: sub random_gamma {
1.73 albertel 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;
1.26 ng 682: }
683:
684: sub random_exponential {
1.73 albertel 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;
1.26 ng 692: }
693:
694: sub random_poisson {
1.73 albertel 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;
1.26 ng 702: }
703:
704: sub random_chi {
1.73 albertel 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;
1.26 ng 712: }
713:
714: sub random_noncentral_chi {
1.73 albertel 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;
1.26 ng 722: }
723:
724: sub random_f {
1.73 albertel 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;
1.26 ng 732: }
733:
734: sub random_noncentral_f {
1.73 albertel 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;
1.26 ng 742: }
743:
744: sub random_multivariate_normal {
1.73 albertel 745: my ($item_cnt,$seed,$mean,$covar) = @_;
746: my @oldseed=&random_get_seed();
747: &random_set_seed_from_phrase($seed);
1.87 albertel 748: my @retArray=&math_random_multivariate_normal($item_cnt,@$mean,@$covar);
1.73 albertel 749: &random_set_seed(@oldseed);
750: return @retArray;
1.26 ng 751: }
752:
753: sub random_multinomial {
1.73 albertel 754: my ($item_cnt,$seed,@p) = @_;
755: my @oldseed=&random_get_seed();
756: my @retArray;
757: &random_set_seed_from_phrase($seed);
1.87 albertel 758: my @retArray=&math_random_multinomial($item_cnt,@p);
1.73 albertel 759: &random_set_seed(@oldseed);
760: return @retArray;
1.26 ng 761: }
762:
763: sub random_permutation {
1.73 albertel 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;
1.26 ng 771: }
772:
773: sub random_uniform {
1.73 albertel 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;
1.26 ng 781: }
782:
783: sub random_uniform_integer {
1.73 albertel 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;
1.26 ng 791: }
792:
793: sub random_binomial {
1.73 albertel 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;
1.26 ng 801: }
802:
803: sub random_negative_binomial {
1.73 albertel 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;
1.26 ng 811: }
812:
1.103 albertel 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) }
1.162 raeburn 819: sub ln { CORE::log(shift) }
1.103 albertel 820: sub atan2 { CORE::atan2($_[0],$_[1]) }
821: sub sqrt { CORE::sqrt(shift) }
1.23 ng 822:
1.59 albertel 823: sub tan { CORE::sin($_[0]) / CORE::cos($_[0]) }
1.21 harris41 824: #sub atan { atan2($_[0], 1); }
825: #sub acos { atan2(sqrt(1 - $_[0] * $_[0]), $_[0] ); }
826: #sub asin { atan2($_[0], sqrt(1- $_[0] * $_[0]) ); }
1.22 ng 827:
1.59 albertel 828: sub log10 { CORE::log($_[0])/CORE::log(10); }
1.22 ng 829:
1.20 harris41 830: sub factorial {
1.59 albertel 831: my $input = CORE::int(shift);
1.20 harris41 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: }
1.1 harris41 855:
1.20 harris41 856: sub roundto {
857: my ($input,$n) = @_;
858: return sprintf('%.'.$n.'f',$input);
859: }
860:
861: sub to_string {
862: my ($input,$n) = @_;
1.26 ng 863: return sprintf($input) if $n eq "";
864: $n = '.'.$n if $n !~ /^\./;
1.20 harris41 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: }
1.1 harris41 872:
873: sub pow {return $_[0] ** $_[1]; }
1.59 albertel 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)); }
1.27 ng 876: #sub floor {return int($_[0]); }
1.1 harris41 877:
1.2 albertel 878: sub format {
1.73 albertel 879: my ($value,$fmt)=@_;
1.81 albertel 880: my ($dollarmode,$commamode,$alwaysperiod,$options);
881: if ($fmt =~ /^([^\d]*)(.*)/) { $options=$1; $fmt=$2; }
882: #if ($options =~ /\$/) { $dollamode=1; }
883: #if ($options =~ /,/) { $commamode=1; }
1.82 albertel 884: if ($options =~ /\./) { $alwaysperiod=1; }
1.99 ng 885: my $result;
1.97 albertel 886: if ($fmt=~/s$/i) {
887: $result=&format_significant_figures($value,$fmt);
888: } else {
889: $fmt=~s/e/E/g;
1.99 ng 890: $result=sprintf('%.'.$fmt,$value);
1.97 albertel 891: if ($alwaysperiod && $fmt eq '0f') { $result .='.'; }
892: $result=~s/(E[+-]*)0/$1/;
893: }
1.81 albertel 894: #if ($dollarmode) {$result=&dollarformat($result);}
895: #if ($commamode) {$result=&commaformat($result);}
1.73 albertel 896: return $result;
1.46 albertel 897: }
898:
1.75 albertel 899: sub chemparse {
900: my ($reaction) = @_;
1.96 albertel 901: my @tokens = split(/(\s\+|\->|<=>|<\-|\.)/,$reaction);
1.75 albertel 902: my $formula = '';
903: foreach my $token (@tokens) {
904: if ($token eq '->' ) {
905: $formula .= '<m>\ensuremath{\rightarrow}</m> ';
906: next;
907: }
1.96 albertel 908: if ($token eq '<-' ) {
909: $formula .= '<m>\ensuremath{\leftarrow}</m> ';
910: next;
911: }
1.75 albertel 912: if ($token eq '<=>') {
913: if ($external::target eq 'web' &&
914: &EXT('request.browser.unicode')) {
1.76 albertel 915: $formula .= '⇌ ';
1.75 albertel 916: } else {
917: $formula .= &web('<=> ','<m>\ensuremath{\rightleftharpoons}</m> ',
1.95 albertel 918: '<=> ');
1.75 albertel 919: }
920: next;
921: }
1.96 albertel 922: if ($token eq '.') {
923: $formula =~ s/(\ \;| )$//;
924: $formula .= '·';
925: next;
926: }
927: $token =~ /^\s*([\d|\/]*(?:&frac\d\d)?)(.*)/;
1.90 albertel 928: $formula .= $1 if ($1 ne '1'); # stoichiometric coefficient
1.75 albertel 929:
930: my $molecule = $2;
931: # subscripts
1.78 albertel 932: $molecule =~ s|(?<=[a-zA-Z\)\]\s])(\d+)|<sub>$1</sub>|g;
1.75 albertel 933: # superscripts
934: $molecule =~ s|\^(\d*[+\-]*)|<sup>$1</sup>|g;
935: # strip whitespace
936: $molecule =~ s/\s*//g;
937: # forced space
938: $molecule =~ s/_/ /g;
1.96 albertel 939: $molecule =~ s/-/−/g;
1.75 albertel 940: $formula .= $molecule.' ';
941: }
942: # get rid of trailing space
1.87 albertel 943: $formula =~ s/(\ \;| )$//;
1.75 albertel 944: return &xmlparse($formula);
945: }
946:
1.46 albertel 947: sub prettyprint {
1.73 albertel 948: my ($value,$fmt,$target)=@_;
949: my $result;
950: if (!$target) { $target = $external::target; }
1.75 albertel 951: if ($fmt =~ /chem/i) { return(&chemparse($value)); }
1.81 albertel 952: my ($dollarmode,$commamode,$alwaysperiod,$options);
953: if ($fmt =~ /^([^\d]*)(.*)/) { $options=$1; $fmt=$2; }
1.86 albertel 954: if ($options =~ /\$/) { $dollarmode=1; }
1.81 albertel 955: if ($options =~ /,/) { $commamode=1; }
956: if ($options =~ /\./) { $alwaysperiod=1; }
1.97 albertel 957: if ($fmt=~/s$/i) {
958: $value=&format_significant_figures($value,$fmt);
959: } elsif ($fmt) {
960: $value=sprintf('%.'.$fmt,$value);
961: }
1.81 albertel 962: if ($alwaysperiod && $fmt eq '0f') {
963: if ($target eq 'tex') {
964: $value .='\\ensuremath{.}';
965: } else {
966: $value .='.';
967: }
968: }
1.73 albertel 969: if ($value =~ /([0-9\.\-\+]+)E([0-9\-\+]+)/i ) {
970: my $frac=$1;
971: if ($dollarmode) { $frac=&dollarformat($frac); }
1.80 albertel 972: if ($commamode) { $frac=&commaformat($frac); }
1.73 albertel 973: my $exponent=$2;
974: $exponent=~s/^\+0*//;
975: $exponent=~s/^-0*/-/;
976: $exponent=~s/^-0*/-/;
977: if ($exponent eq '-') { undef($exponent); }
978: if ($exponent) {
979: if ($target eq 'web') {
980: $result=$frac.'×10<sup>'.$exponent.'</sup>';
981: } elsif ($target eq 'tex') {
982: $result='\ensuremath{'.$frac.'\times 10^{'.$exponent.'}}';
983: } else {
984: $result=$value;
985: }
986: } else {
987: $result=$frac;
988: }
989: } else {
1.48 albertel 990: $result=$value;
1.86 albertel 991: if ($dollarmode) { $result=&dollarformat($result,$target); }
992: elsif ($commamode) { $result=&commaformat($result,$target); }
1.46 albertel 993: }
1.73 albertel 994: return $result;
1.48 albertel 995: }
996:
1.80 albertel 997: sub commaformat {
1.73 albertel 998: my ($number,$target) = @_;
999: if ($number =~ /\./) {
1.102 albertel 1000: while ($number =~ /([^0-9]*)([0-9]+)([^\.,][^\.,][^\.,])([,0-9]*\.[0-9]*)$/) {
1001: $number = $1.$2.','.$3.$4;
1.73 albertel 1002: }
1003: } else {
1.102 albertel 1004: while ($number =~ /^([^0-9]*)([0-9]+)([^,][^,][^,])([,0-9]*)$/) {
1005: $number = $1.$2.','.$3.$4;
1.73 albertel 1006: }
1007: }
1.80 albertel 1008: return $number;
1009: }
1010:
1011: sub dollarformat {
1012: my ($number,$target) = @_;
1013: if (!$target) { $target = $external::target; }
1014: $number=&commaformat($number,$target);
1.73 albertel 1015: if ($target eq 'tex') {
1016: $number='\$'.$number; #' stupid emacs
1017: } else {
1018: $number='$'.$number; #' stupid emacs
1019: }
1020: return $number;
1.2 albertel 1021: }
1.5 albertel 1022:
1.97 albertel 1023: # format of form ns or nS where n is an integer
1024: sub format_significant_figures {
1025: my ($number,$format) = @_;
1026: return '0' if ($number == 0);
1027: # extract number of significant figures needed
1028: my ($sig) = ($format =~ /(\d+)s/i);
1029: # arbitrary choice - suggestions ?? or throw error message?
1030: $sig = 3 if ($sig eq '');
1031: # save the minus sign
1032: my $sign = ($number < 0) ? '-' : '';
1033: $number = abs($number);
1034: # needed to correct for a number greater than 1 (or
1035: my $power = ($number < 1) ? 0 : 1;
1036: # could round up. Take the integer part of log10.
1037: my $x10 = int(log($number)/log(10));
1038: # find number with values left of decimal pt = # of sign figs.
1039: my $xsig = $number*10**($sig-$x10-$power);
1040: # get just digits left of decimal pt - also rounds off correctly
1041: my $xint = sprintf('%.0f',$xsig);
1042: # save any trailing zero's
1043: my ($zeros) = ($xint =~ /(0+)$/);
1044: # return number to original magnitude
1045: my $numSig = $xint*10**($x10-$sig+$power);
1.165 raeburn 1046: if ($numSig =~ /^(\d+)\.(\d+)/) {
1047: # insert trailing zero's if have decimal point
1.166 ! raeburn 1048: my @digarray = split('',$1.$2);
! 1049: my $sigcount;
! 1050: while (@digarray > 0) {
! 1051: my $item = shift(@digarray);
! 1052: if ($item) {
! 1053: $sigcount = 1 + @digarray;
! 1054: last;
! 1055: }
! 1056: }
! 1057: if (($sigcount) && ($sig >= $sigcount)) {
! 1058: $zeros = substr($zeros,0,($sig - $sigcount));
! 1059: }
1.165 raeburn 1060: $numSig =~ s/^(\d+)\.(\d+)(\e?(.*)?)$/$1\.$2$zeros$3/;
1061: } else {
1062: if ($numSig =~ /0$/) {
1063: # add decimal pt for number ending with 0 and length == # of sig figs
1064: if (length($numSig) == $sig) {
1065: $numSig.='.';
1066: } elsif (length($numSig) > $sig) {
1067: # exponential form for number ending with 0 and length > # of sig figs
1068: my $fmtsig = $sig-1;
1069: if ($fmtsig) {
1070: $numSig = sprintf('%.'.$fmtsig.'e',$numSig);
1071: }
1072: }
1073: }
1074: if (length($numSig) < $sig) {
1075: $numSig.='.'.substr($zeros,0,($sig-length($numSig)));
1076: }
1.98 albertel 1077: }
1.97 albertel 1078: # return number with sign
1079: return $sign.$numSig;
1080: }
1081:
1.5 albertel 1082: sub map {
1.27 ng 1083: my ($phrase,$dest,$source)=@_;
1.51 albertel 1084: my @oldseed=&random_get_seed();
1.27 ng 1085: my @seed = &random_seed_from_phrase($phrase);
1086: &random_set_seed(@seed);
1087: my $destct = scalar(@$dest);
1.28 ng 1088: if (!$source) {
1089: my @output;
1090: my @idx = &math_random_permuted_index($destct);
1091: my $ctr = 0;
1092: while ($ctr < $destct) {
1093: $output[$ctr] = $$dest[$idx[$ctr]];
1.27 ng 1094: $ctr++;
1.28 ng 1095: }
1.51 albertel 1096: &random_set_seed(@oldseed);
1.28 ng 1097: return @output;
1.27 ng 1098: } else {
1.28 ng 1099: my $num = scalar(@$source);
1100: my @idx = &math_random_permuted_index($num);
1101: my $ctr = 0;
1102: my $tot = $num;
1103: $tot = $destct if $destct < $num;
1104: if (ref($$dest[0])) {
1105: while ($ctr < $tot) {
1106: ${$$dest[$ctr]} = $$source[$idx[$ctr]];
1107: $ctr++;
1108: }
1109: } else {
1110: while ($ctr < $tot) {
1111: $$dest[$ctr] = $$source[$idx[$ctr]];
1112: $ctr++;
1113: }
1114: }
1.27 ng 1115: }
1.56 albertel 1116: &random_set_seed(@oldseed);
1.51 albertel 1117: return '';
1.27 ng 1118: }
1119:
1120: sub rmap {
1121: my ($phrase,$dest,$source)=@_;
1.51 albertel 1122: my @oldseed=&random_get_seed();
1.27 ng 1123: my @seed = &random_seed_from_phrase($phrase);
1124: &random_set_seed(@seed);
1125: my $destct = scalar(@$dest);
1.28 ng 1126: if (!$source) {
1127: my @idx = &math_random_permuted_index($destct);
1128: my $ctr = 0;
1129: my @r_idx;
1130: while ($ctr < $destct) {
1131: $r_idx[$idx[$ctr]] = $ctr;
1132: $ctr++;
1133: }
1134: my @output;
1135: $ctr = 0;
1136: while ($ctr < $destct) {
1137: $output[$ctr] = $$dest[$r_idx[$ctr]];
1.27 ng 1138: $ctr++;
1.28 ng 1139: }
1.51 albertel 1140: &random_set_seed(@oldseed);
1.28 ng 1141: return @output;
1.27 ng 1142: } else {
1.28 ng 1143: my $num = scalar(@$source);
1144: my @idx = &math_random_permuted_index($num);
1145: my $ctr = 0;
1146: my $tot = $num;
1147: $tot = $destct if $destct < $num;
1148: my @r_idx;
1.27 ng 1149: while ($ctr < $tot) {
1.28 ng 1150: $r_idx[$idx[$ctr]] = $ctr;
1.27 ng 1151: $ctr++;
1.28 ng 1152: }
1153: $ctr = 0;
1154: if (ref($$dest[0])) {
1155: while ($ctr < $tot) {
1156: ${$$dest[$ctr]} = $$source[$r_idx[$ctr]];
1157: $ctr++;
1158: }
1159: } else {
1160: while ($ctr < $tot) {
1161: $$dest[$ctr] = $$source[$r_idx[$ctr]];
1162: $ctr++;
1163: }
1164: }
1.6 albertel 1165: }
1.51 albertel 1166: &random_set_seed(@oldseed);
1167: return '';
1.5 albertel 1168: }
1.22 ng 1169:
1.23 ng 1170: sub capa_id { return }
1171:
1172: sub problem { return }
1173:
1.22 ng 1174: sub name{
1.73 albertel 1175: my $fullname = &EXT('environment.lastname').', '.&EXT('environment.firstname').' '.&EXT('environment.middlename');
1176: $fullname = "" if $fullname eq ", ";
1177: $fullname =~ s/\%2d/-/g;
1178: return $fullname;
1.22 ng 1179: }
1180:
1181: sub student_number {
1.73 albertel 1182: my $id = &EXT('environment.id');
1183: $id = '' if $id eq "";
1184: return $id;
1.22 ng 1185: }
1186:
1187: sub class {
1.73 albertel 1188: my $course = &EXT('course.description');
1189: $course = '' if $course eq "";
1190: return $course;
1.22 ng 1191: }
1192:
1.153 www 1193: sub classid {
1194: my $courseid = &EXT('request.course.id');
1195: $courseid = '' if $courseid eq "";
1196: return $courseid;
1197: }
1198:
1.112 www 1199: sub firstname {
1200: my $firstname = &EXT('environment.firstname');
1201: $firstname = '' if $firstname eq "";
1202: return $firstname;
1203: }
1.153 www 1204:
1205: sub middlename {
1206: my $middlename = &EXT('environment.middlename');
1207: $middlename = '' if $middlename eq "";
1208: return $middlename;
1209: }
1210:
1.112 www 1211: sub lastname {
1212: my $lastname = &EXT('environment.lastname');
1213: $lastname = '' if $lastname eq "";
1214: return $lastname;
1215: }
1216:
1.22 ng 1217: sub sec {
1.73 albertel 1218: my $sec = &EXT('request.course.sec');
1219: $sec = '' if $sec eq "";
1220: return $sec;
1.22 ng 1221: }
1222:
1.136 www 1223: sub submission {
1.164 bisitz 1224: my ($partid,$responseid,$subnumber,$encode)=@_;
1.136 www 1225: my $sub='';
1226: if ($subnumber) { $sub=$subnumber.':'; }
1.164 bisitz 1227: my $output =
1228: &EXT('user.resource.'.$sub.'resource.'.$partid.'.'.$responseid.'.submission');
1229: if ($encode) {
1230: $output =~ s/&/&/g;
1231: $output =~ s/</</g;
1232: $output =~ s/>/>/g;
1233: $output =~ s/"/"/g;
1.165 raeburn 1234: }
1.164 bisitz 1235: return $output;
1.136 www 1236: }
1237:
1238: sub currentpart {
1239: return $external::part;
1240: }
1241:
1.135 www 1242: sub eval_time {
1243: my ($timestamp)=@_;
1244: unless ($timestamp) { return ''; }
1245: return &locallocaltime($timestamp);
1246: }
1247:
1.23 ng 1248: sub open_date {
1.134 www 1249: my ($partid)=@_;
1250: unless ($partid) { $partid=0; }
1.135 www 1251: return &eval_time(&EXT('resource.'.$partid.'.opendate'));
1.23 ng 1252: }
1253:
1.134 www 1254: sub due_date {
1255: my ($partid)=@_;
1256: unless ($partid) { $partid=0; }
1.135 www 1257: return &eval_time(&EXT('resource.'.$partid.'.duedate'));
1.23 ng 1258: }
1259:
1260: sub answer_date {
1.134 www 1261: my ($partid)=@_;
1262: unless ($partid) { $partid=0; }
1.135 www 1263: return &eval_time(&EXT('resource.'.$partid.'.answerdate'));
1.24 ng 1264: }
1265:
1.136 www 1266: sub open_date_epoch {
1267: my ($partid)=@_;
1268: unless ($partid) { $partid=0; }
1269: return &EXT('resource.'.$partid.'.opendate');
1270: }
1271:
1272: sub due_date_epoch {
1273: my ($partid)=@_;
1274: unless ($partid) { $partid=0; }
1275: return &EXT('resource.'.$partid.'.duedate');
1276: }
1277:
1278: sub answer_date_epoch {
1279: my ($partid)=@_;
1280: unless ($partid) { $partid=0; }
1281: return &EXT('resource.'.$partid.'.answerdate');
1282: }
1283:
1.154 www 1284: sub parameter_setting {
1285: my ($which,$partid)=@_;
1286: unless ($partid) { $partid=0; }
1287: return &EXT('resource.'.$partid.'.'.$which);
1288: }
1289:
1290: sub stored_data {
1291: my ($which,$partid)=@_;
1292: unless ($partid) { $partid=0; }
1293: return &EXT('user.resource.resource.'.$partid.'.'.$which);
1294: }
1295:
1.155 www 1296: sub wrong_bubbles {
1297: my ($correct,$lower,$upper,$step,@given)=@_;
1298: my @array=();
1299: my %hash=();
1300: foreach my $new (@given) {
1301: $hash{$new}=1;
1302: }
1303: my $num=int(¶meter_setting('numbubbles',¤tpart()));
1304: unless ($num) { $num=8; }
1305: if ($num>1) {
1306: for (my $i=0;$i<=500;$i++) {
1307: my $new=&random($lower,$upper,$step);
1308: if ($hash{$new}) { next; }
1309: if (abs($new-$correct)<$step) { next; }
1310: $hash{$new}=1;
1311: @array=keys(%hash);
1312: if ($#array+2>=$num) { last; }
1313: }
1314: }
1315: return @array;
1316: }
1317:
1.24 ng 1318: sub array_moments {
1.73 albertel 1319: my @input=@_;
1320: my (@output,$N);
1321: $N=scalar (@input);
1322: $output[0]=$N;
1323: if ($N <= 1) {
1324: $output[1]=$input[0];
1325: $output[1]="Input array not defined" if ($N == 0);
1326: $output[2]="variance undefined for N<=1";
1327: $output[3]="skewness undefined for N<=1";
1328: $output[4]="kurtosis undefined for N<=1";
1329: return @output;
1330: }
1331: my $sum=0;
1332: foreach my $line (@input) {
1333: $sum+=$line;
1334: }
1335: $output[1] = $sum/$N;
1336: my ($x,$sdev,$var,$skew,$kurt) = 0;
1337: foreach my $line (@input) {
1338: $x=$line-$output[1];
1339: $var+=$x**2;
1340: $skew+=$x**3;
1341: $kurt+=$x**4;
1342: }
1343: $output[2]=$var/($N-1);
1344: $sdev=CORE::sqrt($output[2]);
1345: if ($sdev == 0) {
1346: $output[3]="inf-variance=0";
1347: $output[4]="inf-variance=0";
1348: return @output;
1349: }
1350: $output[3]=$skew/($sdev**3*$N);
1351: $output[4]=$kurt/($sdev**4*$N)-3;
1.24 ng 1352: return @output;
1353: }
1.5 albertel 1354:
1355: sub choose {
1.73 albertel 1356: my $num = $_[0];
1357: return $_[$num];
1.5 albertel 1358: }
1.23 ng 1359:
1.101 albertel 1360: #&sum1(1,$x,sub { &sum1($_[0],2*$_[0], sub { fact($_[0])**2 })});
1361: #sub sum1 {
1362: # my ($start,$end,$sub)=@_;
1363: # my $sum=0;
1364: # for (my $i=$start;$i<=$end;$i++) {
1365: # $sum+=&$sub($i);
1366: # }
1367: # return $sum
1368: #}
1369:
1370: #&sum2('a',1,$x,'&sum2(\'b\',$a,2*$a, \'&factorial($b)**2\')');
1371: #sub sum2 {
1372: # my ($varname,$start,$end,$line)=@_;
1373: # my $sum=0;
1374: # for (my $i=$start;$i<=$end;$i++) {
1375: # my $func=sub {
1376: # eval("\$".$varname."=$i");
1377: # eval($line);
1378: # };
1379: # $sum+=&$func($i);
1380: # }
1381: # return $sum
1382: #}
1383:
1.49 albertel 1384: # expiremental idea
1385: sub proper_path {
1.73 albertel 1386: my ($path)=@_;
1387: if ( $external::target eq "tex" ) {
1388: return '/home/httpd/html'.$path;
1389: } else {
1390: return $path;
1391: }
1.49 albertel 1392: }
1.23 ng 1393:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>