"Source: Text/System/State.text";
"Line: 1919";
"Date: Thu Sep 25 21:32:21 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/State.text, line: 1919
// Example: H1E20 ()
print "Example: H1E20";
ei := GetEchoInput();
SetEchoInput(true);
n := 2^109-1;
time Factorization(n);
m := 2^111-1;
n := 2^113-1;
t := Cputime();
Factorization(m);
Factorization(n);
Cputime(t);
function MyFunc(G)
   vprint User1: "Computing order...";
   vtime  User1: o := #G;
   return o;
end function;
SetVerbose("User1", 0);
MyFunc(Sym(4));
SetVerbose("User1", 1);
MyFunc(Sym(4));        
SetEchoInput(ei);
