source: git/Singular/blackbox.h @ 091193e

spielwiese
Last change on this file since 091193e was 091193e, checked in by Hans Schoenemann <hannes@…>, 13 years ago
blackbox needs additional properties git-svn-id: file:///usr/local/Singular/svn/trunk@13835 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.0 KB
Line 
1#ifndef BLACKBOX_H
2#define BLACKBOX_H
3#include <omalloc.h>
4#include <kernel/structs.h>
5#include <kernel/febase.h>
6
7void removeBlackboxStuff(const int rt);
8
9struct blackbox_struct;
10
11typedef struct blackbox_struct blackbox;
12
13struct  blackbox_struct
14{
15  /// destroy the object: b points to blackbox_struct, d to data
16  void (*blackbox_destroy)(blackbox  *b, void *d);
17  /// convert the object to a string (which should be freed by omFree)
18  char *(*blackbox_String)(blackbox *b,void *d);
19  /// print the object: default: use string representation
20  void (*blackbox_Print)(blackbox *b,void *d);
21  /// construct the default object
22  void *(*blackbox_Init)(blackbox *b);
23  /// copy the object: b points to blackbox_struct, d to data
24  void *(*blackbox_Copy)(blackbox *b,void *d);
25  /// interpreter assign: l:=r
26  BOOLEAN (*blackbox_Assign)(leftv l, leftv r);
27  /// interpreter: unary operations op(r), r(), ...
28  BOOLEAN (*blackbox_Op1)(int op,leftv l, leftv r);
29  /// interpreter: binary operations: op(r1,r2), r1 op r2,...
30  BOOLEAN (*blackbox_Op2)(int op,leftv l, leftv r1,leftv r2);
31  /// interpreter: tertiary op: op(r1,r2,r3)
32  BOOLEAN (*blackbox_Op3)(int op,leftv l, leftv r1,leftv r2, leftv r3);
33  /// interpreter: operations with undefined number of operands
34  BOOLEAN (*blackbox_OpM)(int op,leftv l, leftv r);
35  /// additional type info
36  void *data;
37  /// addtinional gneral properties
38  char like_lists; // 1:blackbox is only a wrapper for lists
39} ;
40/// default procedure blackboxDefaultOp1, to be called as "default:" branch
41BOOLEAN blackboxDefaultOp1(int op,leftv l, leftv r);
42
43/// return the structure to the type given by t
44blackbox* getBlackboxStuff(const int t);
45/// return the name to the type given by t (r/o)
46const char *    getBlackboxName(const int t);
47/// used by scanner: returns ROOTDECL for known types (and the type number in t)
48int blackboxIsCmd(const char *n, int & tok);
49/// define a new type
50int setBlackboxStuff(blackbox *bb,const char *name);
51
52/// list all defined type (for debugging)
53void printBlackboxTypes();
54
55#endif
Note: See TracBrowser for help on using the repository browser.