Changeset a1b6b0f in git
- Timestamp:
- Dec 13, 1997, 1:51:41 PM (26 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 918ec8a016936f3512445c139a607d8cbb51bdbb
- Parents:
- c3bd04f5c1a0d3383ad0db9278ad745c8d0daf74
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/readcf.y
rc3bd04 ra1b6b0f 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: readcf.y,v 1. 5 1997-12-08 18:24:42schmidt Exp $ */2 /* $Id: readcf.y,v 1.6 1997-12-13 12:51:41 schmidt Exp $ */ 3 3 4 4 %{ … … 18 18 19 19 #include "cf_defs.h" 20 #include "gfops.h" 20 21 #include "canonicalform.h" 21 22 #include "parseutil.h" … … 98 99 } 99 100 else if ( isalpha( c ) ) { 100 if ( c == getDefaultVarName() ) { 101 // look for generators of GF(q) 102 if ( getCharacteristic() > 0 && getGFDegree() > 1 && c == gf_name ) { 103 #ifdef BISONPP 104 this->yylval = getGFGenerator(); 105 #else 106 yylval = getGFGenerator(); 107 #endif 108 } 109 else if ( c == getDefaultVarName() ) { 101 110 int cc; 102 111 cc = defaultin->get();
Note: See TracChangeset
for help on using the changeset viewer.