Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions check/coverage.frm
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,21 @@ Print;
assert succeeded?
assert result("G") =~ expr("1048576 + p.q + p(mu) + e_(p,q) + g(2) + T(q) + T(mu) + f(1)")
*--#] cov_saveload :
*--#[ cov_saveload_err :
Symbol x;
Global F = x;
.store
Save test.sav F;
.end
Load test.sav F1;
.end
assert runtime_error?
assert stdout =~ exact_pattern(<<'EOF')
Load test.sav F1;
Cannot find expression F1
F1 not found
EOF
*--#] cov_saveload_err :
*--#[ cov_symm :
* pattern matching of functions with symmtry properties
Indices x1,x2,x3,x4,x5;
Expand Down
2 changes: 1 addition & 1 deletion check/examples.frm
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ assert succeeded?
assert result("F") =~ expr("
8
")
*--#] Sta_Dropsymbols_1
*--#] Sta_DropSymbols_1
*--#[ Sta_FactArg_1 :
*TODO: OldFactArg is needed for the result in the manual.
On OldFactArg;
Expand Down
6 changes: 5 additions & 1 deletion doc/manual/statements.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3235,7 +3235,11 @@ \section{load}
expression is not present, an error will result. If one does not know
exactly what expressions are present in a file one could load the file
without a list of expressions, because \FORM\ will list all expressions that
it encountered. \vspace{10mm}
it encountered. When using multiple loaded expressions on the right-hand side
of definitions or statements, which each depend on a subset of a larger set of
definitions, the final variable ordering may not be what is expected. If the
ordering is important, one should manually define all variables in the required
order before using loaded expressions from the storage file. \vspace{10mm}

%--#] load :
%--#[ local :
Expand Down
Loading