Changeset d9c8d3 in git for Singular/fglm.cc


Ignore:
Timestamp:
Jan 23, 1998, 3:20:46 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f1201aeda3c936a00561052557964a012e827d7e
Parents:
5f6df6f34dfdbe021b6854f9f20fa223f27dc78d
Message:
* incoporated finduni into top-level.


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

Legend:

Unmodified
Added
Removed
  • Singular/fglm.cc

    r5f6df6f rd9c8d3  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglm.cc,v 1.11 1997-12-15 22:46:22 obachman Exp $
     2// $Id: fglm.cc,v 1.12 1998-01-23 14:20:38 obachman Exp $
    33
    44/****************************************
     
    316316}
    317317
     318BOOLEAN
     319findUniProc( leftv result, leftv first )
     320{
     321    ideal sourceIdeal;
     322    ideal destIdeal;
     323   
     324    idhdl sourceIdealHdl = (idhdl)first->data;
     325    sourceIdeal= IDIDEAL(sourceIdealHdl);
     326   
     327    destIdeal= FindUnivariateWrapper( sourceIdeal );
     328   
     329    result->rtyp = IDEAL_CMD;
     330    result->data= (void *)destIdeal;
     331   
     332        return FALSE;
     333}
    318334#endif
    319335// ----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.