Skip to content

Commit b4bf124

Browse files
authored
Merge pull request #921 from lahvak/pointsfix
Actually apply changes to limits and test_at.
2 parents 2ceae54 + 7efd9f5 commit b4bf124

File tree

1 file changed

+3
-1
lines changed
  • OpenProblemLibrary/AlfredUniv/anton8e/chapter1/1.5

1 file changed

+3
-1
lines changed

OpenProblemLibrary/AlfredUniv/anton8e/chapter1/1.5/prob9.pg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ TEXT(beginproblem());
4444

4545
$ans1 = Formula("1/sqrt(x**2 + 1)")->reduce;
4646
$ans2 = Formula("sqrt(1-1/x**2)")->reduce;
47-
$ans2->with(limits=>[1.1, 10], test_at=>[[-2],[-3]]);
47+
$ans2->{limits}=[1.1, 10];
48+
$ans2->{test_at}=[[-2],[-3]];
49+
Context()->functions->disable('Trig');
4850

4951
Context()->texStrings;
5052
BEGIN_TEXT

0 commit comments

Comments
 (0)