#7797: Full interface to letterplace from singular
-------------------------------------------------------------------+--------
Reporter: burcin |
Owner: burcin
Type: enhancement |
Status: needs_work
Priority: major |
Milestone: sage-5.4
Component: algebra |
Resolution:
Keywords: singular, free algebra, letterplace | Work
issues:
Report Upstream: None of the above - read trac for reasoning. |
Reviewers: Alexander Dreyer
Authors: Simon King, Michael Brickenstein, Burcin Erocal | Merged
in:
Dependencies: #4539, #11268, #12461, #12749, #12988, #13237 |
Stopgaps:
-------------------------------------------------------------------+--------
Comment (by SimonKing):
Here is the code for `system("uname")` (to be found in Singular/extra.cc):
{{{
#!C
/*==================== uname ==================================*/
if(strcmp(sys_cmd,"uname")==0)
{
res->rtyp=STRING_CMD;
res->data = omStrDup(S_UNAME);
return FALSE;
}
}}}
About `// ** s_internalDelete: cannot delete type sqrfree(493)`: According
to Hans, 493 is the token for the command `sqrfree`, which is ''not'' a
type but a command. Therefore deleting an object with 493's type is
impossible. He doesn't understand how that happens here.
`res->data` is a C string, and `STRING_CMD` is the token 495, which stands
for the type of a string (`char *`). Could Solares SPARC mistake 495 for
493??
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/7797#comment:85>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.