aboutsummaryrefslogtreecommitdiff
path: root/src/interp/bc-solve.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/bc-solve.boot')
-rw-r--r--src/interp/bc-solve.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/bc-solve.boot b/src/interp/bc-solve.boot
index e3062226..abdc8293 100644
--- a/src/interp/bc-solve.boot
+++ b/src/interp/bc-solve.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2010, Gabriel Dos Reis.
+-- Copyright (C) 2007-2011, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -146,8 +146,8 @@ bcInputEquations(htPage,solutionMethod) ==
spacer := (i > 99 => 0; i > 9 => 1; 2)
prefix := strconc('"\newline\tab{2}{\em Equation ",STRINGIMAGE i,'":}")
prefix := strconc(prefix,'"\space{",STRINGIMAGE spacer,'"}")
- lnam := INTERN strconc('"l",STRINGIMAGE i)
- rnam := INTERN strconc('"r",STRINGIMAGE i)
+ lnam := makeSymbol strconc('"l",STRINGIMAGE i)
+ rnam := makeSymbol strconc('"r",STRINGIMAGE i)
var:=
linearp => bcMakeLinearEquations(i,n)
bcMakeEquations(i,n)
@@ -278,7 +278,7 @@ bcLinearSolveMatrixInhomo(htPage,junk) ==
prefix := strconc('"{\em Coefficient ",STRINGIMAGE i,'":}")
if spacer ~= 0 then
prefix := strconc(prefix,'"\space{",STRINGIMAGE spacer,'"}")
- name := INTERN strconc('"c",STRINGIMAGE i)
+ name := makeSymbol strconc('"c",STRINGIMAGE i)
[prefix,"",30, 0,name, 'P]
page := htInitPage('"Linear Solve Basic Command",htpPropertyList htPage)
htpSetProperty(page,'matrix,htpProperty(htPage,'matrix))