source: git/MP/mpviewer/leaf.h @ 775e57

fieker-DuValspielwiese
Last change on this file since 775e57 was 678cfd, checked in by Olaf Bachmann <obachman@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r337, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@338 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 944 bytes
Line 
1#ifndef __leaf__
2#define __leaf__
3/*******    File: leaf.h    *******/
4
5/******************************************************************
6 *   FUNCTION: display_data_node
7 *   ARGUMENT: dnp - a pointer to the root of a subtree.
8 *   RETURN:   int indicating if dnp is a data node
9 *             1 = data node ouput done
10 *             0 = not a know data node
11 *   PURPOSE:  Output the data node dnp to stdout
12 ******************************************************************/
13
14int display_data_node(/* node_t  *dnp */);
15
16/******************************************************************
17 *   FUNCTION: is_data_node
18 *   ARGUMENT: dnp - a pointer to the root of a subtree.
19 *   RETURN:   0 or 1
20 *   PURPOSE:  predicate function
21 ******************************************************************/
22
23int is_data_node(/* node_t  *dnp */);
24
25/* checks for a negative term, such as -x or -cos(x) ***/
26int is_neg(/* node_t  *dnp */);
27
28#endif
Note: See TracBrowser for help on using the repository browser.