51 public function __construct(
$result,
$range_min,
$range_max,
$tolerance,
$unit,
$formula,
$points,
$precision,
$rating_simple =
true,
$rating_sign = 33,
$rating_value = 34,
$rating_unit = 33,
$result_type = 0)
54 # $this->setRangeMin((is_numeric($range_min)) ? $range_min : NULL); 55 # $this->setRangeMax((is_numeric($range_max)) ? $range_max : NULL); 81 if (preg_match_all(
"/(\\\$r\\d+)/ims",
$formula, $matches)) {
82 foreach ($matches[1] as
$result) {
83 if (strcmp($result, $this->
getResult()) == 0) {
102 $resultunits = array();
103 if ($question_id > 0) {
107 include_once
"./Services/Math/classes/class.ilMath.php";
108 include_once
"./Services/Math/classes/class.EvalMath.php";
110 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
111 foreach ($matches[1] as $variable) {
112 $varObj = $variables[$variable];
113 if (!is_object($varObj)) {
116 $value = $varObj->getBaseValue();
117 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $value .
")" .
"\\1",
$formula);
121 $math->suppress_errors =
true;
125 if (is_object($this->
getUnit())) {
131 if ($use_precision ==
true) {
144 include_once
"./Services/Math/classes/class.EvalMath.php";
147 while (
$i < 1000 && !$inRange) {
149 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
150 foreach ($matches[1] as $variable) {
151 $varObj = $variables[$variable];
152 if (!is_object($varObj)) {
155 $varObj->setRandomValue();
156 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $varObj->getBaseValue() .
")" .
"\\1",
$formula);
160 $math->suppress_errors =
true;
162 $inRange = (is_numeric(
$result)) ?
true :
false;
183 include_once
"./Services/Math/classes/class.EvalMath.php";
186 for (
$i = 0;
$i < 1000;
$i++) {
188 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
189 foreach ($matches[1] as $variable) {
190 $varObj = $variables[$variable];
191 if (!is_object($varObj)) {
194 $varObj->setRandomValue();
195 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $varObj->getBaseValue() .
")" .
"\\1",
$formula);
199 $math->suppress_errors =
true;
208 include_once
"./Services/Math/classes/class.ilMath.php";
209 if (is_object($this->
getUnit())) {
227 if ($value === null || 0 == strlen($value)) {
230 $value = str_replace(
' ',
'', $value);
232 include_once
"./Services/Math/classes/class.EvalMath.php";
233 include_once
"./Services/Math/classes/class.ilMath.php";
236 $check_valid_chars =
true;
238 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
239 foreach ($matches[1] as $variable) {
240 $varObj = $variables[$variable];
241 if (!is_object($varObj)) {
245 if ($varObj->getUnit() != null) {
247 if ($varObj->getUnit()->getBaseUnit() != -1) { #$this->
getUnit() != NULL)
248 $tmp_value = $varObj->getValue() * $varObj->getUnit()->getFactor();
250 $tmp_value = $varObj->getValue();
253 $tmp_value = $varObj->getValue();
256 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $tmp_value .
")" .
"\\1",
$formula);
261 $math->suppress_errors =
true;
263 $resultWithRespectedUnit =
$result;
265 if (is_object($this->
getUnit())) {
269 if ($this->
getUnit()->getBaseUnit() != -1) {
276 if (
$unit->getFactor() != 1 && strlen(trim(
$unit->getFactor())) != 1) {
283 $has_valid_chars = preg_match(
"/^-?([0-9]*)(,|\\.|\\/){0,1}([0-9]*)([eE][\\+|-]([0-9])+)?$/", $value, $matches);
284 if (!$has_valid_chars) {
285 $check_valid_chars =
false;
287 (isset($matches[2]) && $matches[2] ==
'/') &&
288 (isset($matches[4]) && strtolower($matches[4]) ==
"e") &&
289 (!isset($matches[1]) || !strlen($matches[1]) || !isset($matches[3]) || !strlen($matches[3]) || $matches[3] == 0)) {
290 $check_valid_chars =
false;
296 if (substr_count($value,
'.') == 1 || substr_count($value,
',') == 1) {
298 $frac_value = str_replace(
',',
'.', $exp_val);
300 $frac_value = $value;
303 if (substr_count($value,
'/') >= 1) {
304 $check_fraction =
false;
306 $check_fraction =
true;
312 $exp_val = explode(
'/', $value);
313 if (count($exp_val) == 1) {
316 if (ilMath::_equals($frac_value, $resultWithRespectedUnit, $this->
getPrecision())) {
317 $check_fraction =
true;
319 $check_fraction =
false;
331 $frac_value = str_replace(
',',
'.', $frac_value);
333 if (ilMath::_equals($frac_value, $resultWithRespectedUnit, $this->
getPrecision())) {
334 $check_fraction =
true;
338 if (!self::isCoprimeFraction($exp_val[0], $exp_val[1])) {
339 $check_fraction =
false;
344 if (substr_count($value,
'.') >= 1 || substr_count($value,
',') >= 1) {
345 $check_fraction =
false;
351 if (substr_count($value,
'.') == 1 || substr_count($value,
',') == 1) {
352 $frac_value = str_replace(
',',
'.', $value);
353 } elseif (substr_count($value,
'/') == 1) {
354 $exp_val = explode(
'/', $value);
365 $frac_value = $value;
368 $check_fraction =
true;
372 if (is_object(
$unit)) {
373 if (isset($frac_value)) {
378 $frac_value = ilMath::_round($frac_value, $this->
getPrecision());
379 $resultWithRespectedUnit = ilMath::_round($resultWithRespectedUnit, $this->
getPrecision());
382 if (isset($frac_value)) {
393 if (is_object($this->
getUnit())) {
394 if (is_object(
$unit)) {
400 return $checkvalue && $checkunit && $check_fraction && $check_valid_chars;
403 protected function isInTolerance($user_answer, $expected, $tolerated_percentage)
407 $lower_boundary =
ilMath::_sub($expected, $tolerance_abs);
408 $upper_boundary =
ilMath::_add($expected, $tolerance_abs);
410 return $lower_boundary <= $user_answer
411 && $user_answer <= $upper_boundary;
416 if ((($v1 >= 0) && ($v2 >= 0)) || (($v1 <= 0) && ($v2 <= 0))) {
426 $ilLog = $DIC[
'ilLog'];
435 include_once
"./Services/Math/classes/class.EvalMath.php";
436 include_once
"./Services/Math/classes/class.ilMath.php";
439 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
440 foreach ($matches[1] as $variable) {
441 $varObj = $variables[$variable];
442 if (!is_object($varObj)) {
445 if ($varObj->getUnit() != null) {
447 if ($varObj->getUnit()->getBaseUnit() != -1) {
448 $tmp_value = $varObj->getValue() * $varObj->getUnit()->getFactor();
450 $tmp_value = $varObj->getValue();
453 $tmp_value = $varObj->getValue();
455 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $tmp_value .
")" .
"\\1",
$formula);
460 $math->suppress_errors =
true;
466 if ((substr_count($value,
'.') == 1) || (substr_count($value,
',') == 1)) {
468 $frac_value = str_replace(
',',
'.', $exp_val);
470 $frac_value = $value;
472 $check_fraction =
true;
475 $exp_val = explode(
'/', $value);
476 if (count($exp_val) == 1) {
479 $check_fraction =
true;
481 $check_fraction =
false;
486 $check_fraction =
true;
491 $exp_val = explode(
'/', $value);
492 if (count($exp_val) == 1) {
493 $check_fraction =
false;
496 if (self::isCoprimeFraction($exp_val[0], $exp_val[1])) {
497 $check_fraction =
true;
503 $check_fraction =
true;
508 if (is_object($this->
getUnit())) {
510 if ($this->
getUnit()->getBaseUnit() != -1) {
518 if (is_object(
$unit)) {
519 if (isset($frac_value)) {
531 if (is_object($this->
getUnit())) {
532 $base1 = $units[
$unit];
533 if (is_object($base1)) {
534 $base1 = $units[$base1->getBaseUnit()];
536 $base2 = $units[$this->
getUnit()->getBaseUnit()];
537 if (is_object($base1) && is_object($base2) && $base1->getId() == $base2->getId()) {
549 return array(
"points" => $this->
getPoints());
551 return array(
"points" => 0);
554 include_once
"./Services/Math/classes/class.EvalMath.php";
555 include_once
"./Services/Math/classes/class.ilMath.php";
558 if (preg_match_all(
"/(\\\$v\\d+)/ims",
$formula, $matches)) {
559 foreach ($matches[1] as $variable) {
560 $varObj = $variables[$variable];
561 $formula = preg_replace(
"/\\\$" . substr($variable, 1) .
"(?![0-9]+)/",
"(" . $varObj->getBaseValue() .
")" .
"\\1",
$formula);
565 $math->suppress_errors =
true;
567 if (is_object($this->
getUnit())) {
570 if (is_object(
$unit)) {
585 if (is_object($this->
getUnit())) {
586 $base1 = $units[
$unit];
587 if (is_object($base1)) {
588 $base1 = $units[$base1->getBaseUnit()];
590 $base2 = $units[$this->
getUnit()->getBaseUnit()];
591 if (is_object($base1) && is_object($base2) && $base1->getId() == $base2->getId()) {
597 $details[
'points'] = $totalpoints;
625 include_once
"./Services/Math/classes/class.EvalMath.php";
627 $math->suppress_errors =
true;
640 if (is_object($this->
getUnit())) {
641 include_once
"./Services/Math/classes/class.ilMath.php";
657 include_once
"./Services/Math/classes/class.EvalMath.php";
659 $math->suppress_errors =
true;
672 if (is_object($this->
getUnit())) {
673 include_once
"./Services/Math/classes/class.ilMath.php";
772 $this->result_type = $a_result_type;
803 $ilDB = $DIC[
'ilDB'];
808 FROM il_qpl_qst_fq_res 809 WHERE question_fi = %s 811 array(
'integer',
'text'),
812 array($a_qst_id, $a_result)
817 return $row[
'result_type'];
822 $gcd = self::getGreatestCommonDivisor(abs($numerator), abs($denominator));
824 return $gcd == 1 ? true :
false;
829 if (empty($decimal_value)) {
833 $to_string = (string) $decimal_value;
834 $is_negative = strpos($to_string,
'-') === 0;
836 $decimal_value = substr($decimal_value, 1);
842 $b = 1 / $decimal_value;
847 $h1 =
$a * $h1 + $h2;
850 $k1 =
$a * $k1 + $k2;
853 }
while ((abs($decimal_value - $h1 / $k1) > $decimal_value *
$tolerance) || ($k1 < 0 ||
$b < 0));
859 $checkResult = ($h1 / $k1);
863 $checkResult = ($h1 / $k1) * -1;
865 if ($to_string == $checkResult .
'' || $checkResult .
'' ==
$result) {
868 return array($to_string,
$result);
875 return self::getGreatestCommonDivisor(
$b,
$a %
$b);
885 $ilDB = $DIC[
'ilDB'];
889 SELECT * FROM il_qpl_qst_fq_res_unit 890 WHERE question_fi = %s 898 $this->available_units[$row[
'result']][] = $row[
'unit_fi'] ;
static _div($left_operand, $right_operand, $scale=50)
static _add($left_operand, $right_operand, $scale=50)
foreach($_POST as $key=> $value) $res
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static _mul($left_operand, $right_operand, $scale=50)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static _sub($left_operand, $right_operand, $scale=50)