"Source: Text/Commut/RngDiff.text";
"Line: 3257";
"Date: Wed Sep 19 23:00:01 2018";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Commut/RngDiff.text, line: 3257
// Example: H118E57 ()
print "Example: H118E57";
ei := GetEchoInput();
SetEchoInput(true);
S<t> := DifferentialLaurentSeriesRing(Rationals());
R<D> := DifferentialOperatorRing(S);
IsRegularSingularOperator(D^2 -t*D+2);
assert $1;
IsRegularSingularOperator(D^2 +3);
assert $1;
IsRegularSingularOperator(D^2 +3 +O(t));
assert $1;
IsRegularSingularOperator(D^2 +3*t^(-1));
assert not $1;
SetEchoInput(ei);
