One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
Macaulay2
/
View File Name :
OpenMath.m2
-- -*- coding: utf-8 -*- -* Copyright 2009 Dan Roozemond (TU Eindhoven, Netherlands) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *- newPackage( "OpenMath", Version => "0.2.2", Date => "March 16, 2011", Authors => { {Name => "Dan Roozemond", Email => "dan.roozemond@gmail.com", HomePage => "http://magma.maths.usyd.edu.au/~danr"} }, Headline => "OpenMath for Macaulay2", Keywords => {"System"}, PackageImports => {"MinimalPrimes"}, PackageExports => {"XML","ConwayPolynomials"}, DebuggingMode => false, AuxiliaryFiles => true ) theOMerror = null; load "./OpenMath/OMattr.m2" load "./OpenMath/OMelts.m2" load "./OpenMath/OMrefs.m2" load "./OpenMath/base.m2" load "./OpenMath/expr.m2" load "./OpenMath/finitefield.m2" load "./OpenMath/cds/arith1.m2" load "./OpenMath/cds/field3.m2" load "./OpenMath/cds/field4.m2" load "./OpenMath/cds/fieldname1.m2" load "./OpenMath/cds/finfield1.m2" load "./OpenMath/cds/fns1.m2" load "./OpenMath/cds/integer1.m2" load "./OpenMath/cds/integer2.m2" load "./OpenMath/cds/linalg1.m2" load "./OpenMath/cds/linalg2.m2" load "./OpenMath/cds/list1.m2" load "./OpenMath/cds/logic1.m2" load "./OpenMath/cds/nums1.m2" load "./OpenMath/cds/polygb1.m2" load "./OpenMath/cds/polygb2.m2" load "./OpenMath/cds/polyd1.m2" load "./OpenMath/cds/polyd2.m2" load "./OpenMath/cds/polynomial4.m2" load "./OpenMath/cds/relation1.m2" load "./OpenMath/cds/scscp1.m2" load "./OpenMath/cds/scscp2.m2" load "./OpenMath/cds/set1.m2" load "./OpenMath/cds/setname1.m2" load "./OpenMath/cds/setname2.m2" load "./OpenMath/cds/scscp_transient_1.m2" ------------------------------- ----(LITTLE) DOCUMENTATION----- ------------------------------- export { "openMath", "val", "matrixGroup" } beginDocumentation() document { Key => OpenMath, Headline => "OpenMath support", "This package provides methods for representing Macaulay2 objects ", "using the ", HREF("https://openmath.org/", "OpenMath"), " standard ", "and vice versa.", SeeAlso => {(val, XMLnode)} } document { Key => {val, (val, XMLnode), (value,XMLnode)}, Headline => "Evaluate an XMLnode containing OpenMath", Usage => "val x", Inputs => { "x" }, Outputs => {{ "the value of the OpenMath object described by x" }}, EXAMPLE lines /// t = parse ////<OMA><OMS cd="arith1" name="plus"/><OMI>1</OMI><OMI>2</OMI></OMA>//// val t ///, TEST /// s = toString toLibxmlNode openMath (hold 2*3) assert (val parse s == 6) ///, TEST /// GF(25)[x,y] s1 = toString toLibxmlNode (openMath (x+y))^2 s2 = toString toLibxmlNode (openMath (x^2 + 2*y*x + y^2)) assert ( s1 != s2 ) assert ( val parse s1 == val parse s2 ) ///, SeeAlso => {openMath} } document { Key => {openMath, (openMath, Thing)}, Headline => "Turn an arbitrary Macaulay2 object into OpenMath (if possible)", Usage => "openMath x", Inputs => { "x" }, Outputs => {{ "an XMLnode describing x" }}, "We show how to convert a random integer to OpenMath and print it as XML", EXAMPLE lines /// v = openMath 42 toLibxmlNode v ///, "We show how to represent 2*3 in OpenMath", EXAMPLE lines /// v = openMath (hold 2*3) toLibxmlNode v ///, TEST /// s = toString toLibxmlNode openMath (hold 2*3) s = replace("(\r|\n| )", "", s) assert (s == "<OMA><OMScd=\"arith1\"name=\"times\"/><OMI>2</OMI><OMI>3</OMI></OMA>") ///, SeeAlso => {(val, XMLnode)} } undocumented{ matrixGroup } endPackage("OpenMath");