[BACK]Return to template1.texi CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-contrib / packages / doc

File: [local] / OpenXM / src / asir-contrib / packages / doc / Attic / template1.texi (download)

Revision 1.2, Fri Dec 10 01:58:03 1999 UTC (24 years, 6 months ago) by takayama
Branch: MAIN
CVS Tags: maekawa-ipv6, RELEASE_20000124, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, RELEASE_1_1_2
Changes since 1.1: +2 -2 lines

1.  @section{hogehoge} causes a trouble for automatic generation of
    help files, so @section{hogehoge} is corrected to @section hogehoge.
2.  sm1_reduction(A|proc=P) is added.  It computes the nornal form
    of a given polynomial.  I'm now using a new feature of asir to
    write this function.
    We can give arguments to user defined
    functions by keywords; the syntax is as follows:
       function_hogehoge(A,B,... | key1=val1, key2=val2, ...)
       def function_hogehoge(A,B,...) {
          K1 = getopt(key1);
          if (type(K1) == -1) {
             /* set the default value */
       ......
    sm1_reduction() also looks for ox_sm1 server automatically, and
    if there is no server, it starts the server. So, users need not
    specify the sever id.

/* $OpenXM: OpenXM/src/asir-contrib/packages/doc/template1.texi,v 1.2 1999/12/10 01:58:03 takayama Exp $ */
/*&eg-texi
@c template1.texi
@menu
* hoge::
@end menu
@node hoge,,, HOGE Functions
@subsection @code{hoge}
@findex hoge
@table @t
@item hoge(@var{p},@var{s})
::  ask the @code{hoge} server to execute the command string @var{s}.
@end table

@table @var
@item return
Void
@item p
Number
@item s
String
@end table

@itemize @bullet
@item  It asks the @code{hoge} server of the descriptor number @var{p}
to execute the command string @var{s}.
@end itemize
*/