Feature for testing the presence of lrslib#
- class sage.features.lrs.Lrs#
Bases:
sage.features.ExecutableA
Featuredescribing the presence of thelrsbinary which comes as a part oflrslib.EXAMPLES:
sage: from sage.features.lrs import Lrs sage: Lrs().is_present() # optional - lrslib FeatureTestResult('lrs', True)
- is_functional()#
Test whether
lrsworks on a trivial input.EXAMPLES:
sage: from sage.features.lrs import Lrs sage: Lrs().is_functional() # optional - lrslib FeatureTestResult('lrs', True)
- class sage.features.lrs.LrsNash#
Bases:
sage.features.ExecutableA
Featuredescribing the presence of thelrsnashbinary which comes as a part oflrslib.EXAMPLES:
sage: from sage.features.lrs import LrsNash sage: LrsNash().is_present() # optional - lrslib FeatureTestResult('lrsnash', True)
- is_functional()#
Test whether
lrsnashworks on a trivial input.EXAMPLES:
sage: from sage.features.lrs import LrsNash sage: LrsNash().is_functional() # optional - lrslib FeatureTestResult('lrsnash', True)
- class sage.features.lrs.Lrslib#
Bases:
sage.features.join_feature.JoinFeatureA
Featuredescribing the presence of the executables which comes as a part oflrslib.EXAMPLES:
sage: from sage.features.lrs import Lrslib sage: Lrslib().is_present() # optional - lrslib FeatureTestResult('lrslib', True)
- sage.features.lrs.all_features()#