Changeset 20040f in git


Ignore:
Timestamp:
Mar 27, 1997, 11:03:08 AM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
66d043aa17d40ba553e4a049d7b3b00c55d6ce4a
Parents:
a9974a92c36b70b478517d2ba74a01ab7b71e61c
Message:
debug output changed to ASSERT


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

Legend:

Unmodified
Added
Removed
  • factory/int_cf.cc

    ra9974a r20040f  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: int_cf.cc,v 1.0 1996-05-17 10:59:46 stobbe Exp $
     2// $Id: int_cf.cc,v 1.1 1997-03-27 10:03:08 schmidt Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.0  1996/05/17 10:59:46  stobbe
     7Initial revision
     8
    69*/
    710
    811#include "assert.h"
     12
    913#include "cf_defs.h"
     14
    1015#include "int_cf.h"
    1116#include "canonicalform.h"
     
    5762InternalCF::intval() const
    5863{
    59     cerr << "not implemented for class " << this->classname() << endl;
    60     ASSERT( 0, "illegal conversion" );
     64    ASSERT1( 0, "illegal conversion: not implemented for class %s", this->classname() );
    6165    return 0;
    6266}
     
    7175InternalCF::invert()
    7276{
    73     cerr << "not implemented for class " << this->classname() << endl;
    74     ASSERT( 0, "internal factory error" );
     77    ASSERT1( 0, "internal factory error: not implemented for class %s", this->classname() );
    7578    return 0;
    7679}
     
    9194InternalCF::comparecoeff ( InternalCF* )
    9295{
    93     cerr << "not implemented for class " << this->classname() << endl;
    94     ASSERT( 0, "fatal error" );
     96    ASSERT1( 0, "fatal error: not implemented for class %s", this->classname() );
    9597    return 0;
    9698}
     
    99101InternalCF::sqrt()
    100102{
    101     cerr << "not implemented for class " << this->classname() << endl;
    102     ASSERT( 0, "fatal error" );
     103    ASSERT1( 0, "fatal error: not implemented for class %s", this->classname() );
    103104    return 0;
    104105}
Note: See TracChangeset for help on using the changeset viewer.