Changeset d5b766 in git for Singular/extra.cc


Ignore:
Timestamp:
Feb 1, 2001, 2:23:12 PM (23 years ago)
Author:
Mathias Schulze <mschulze@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
d971225b227656eaffcaef3076c2525f140cc411
Parents:
7e675596d7c5e63c12b20d64e8b8df4c510ad601
Message:
*mschulze: added include units.h


git-svn-id: file:///usr/local/Singular/svn/trunk@5163 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r7e67559 rd5b766  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.153 2000-12-18 15:44:39 obachman Exp $ */
     4/* $Id: extra.cc,v 1.154 2001-02-01 13:23:12 mschulze Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    8787#include "walk.h"
    8888
     89#include "rednf.h"
     90
    8991/*
    9092 *   New function/system-calls that will be included as dynamic module
     
    98100#endif
    99101#endif /* not HAVE_DYNAMIC_LOADING */
     102
     103// procedures to compute with units
     104#ifdef HAVE_UNITS
     105#include "units.h"
     106#endif
    100107
    101108// see clapsing.cc for a description of the `FACTORY_*' options
     
    495502    else
    496503#endif
     504/*==================== rednf ==================================*/
     505    if(strcmp(sys_cmd,"invunit")==0)
     506    {
     507      return invunit(res,h);
     508    }
     509    else
     510    if(strcmp(sys_cmd,"expand")==0)
     511    {
     512      return expand(res,h);
     513    }
     514    else
     515    if(strcmp(sys_cmd,"rednf")==0)
     516    {
     517      return rednf(res,h);
     518    }
     519    else
    497520/*==================== pcv ==================================*/
    498521#ifndef HAVE_DYNAMIC_LOADING
Note: See TracChangeset for help on using the changeset viewer.