source: git/kernel/ncSACache.cc @ 1367162

spielwiese
Last change on this file since 1367162 was 1367162, checked in by Motsak Oleksandr <motsak@…>, 15 years ago
*motsak: still in early development stage (Special pair NC-multiplication) git-svn-id: file:///usr/local/Singular/svn/trunk@10857 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1016 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/***************************************************************
5 *  File:    ncSAMult.cc
6 *  Purpose: implementation of multiplication in simple NC subalgebras
7 *  Author:  motsak
8 *  Created:
9 *  Version: $Id: ncSACache.cc,v 1.1 2008-07-11 15:53:28 motsak Exp $
10 *******************************************************************/
11
12
13#define MYTEST 0
14#define OUTPUT 0
15
16#if MYTEST
17#define OM_CHECK 4
18#define OM_TRACK 5
19#endif
20
21#include "mod2.h"
22
23#include <ncSACache.h> // for CCacheHash etc classes
24
25#include <ring.h>
26#include <p_polys.h>
27
28
29
30virtual void CGlobalCacheHash::History(const CGlobalCacheHash::CExponent a, const CGlobalCacheHash::CExponent b, const EHistoryType t)
31{
32  Print("GlobalPair!");
33}
34
35
36virtual void CSpecialPairCacheHash::History(const CSpecialPairCacheHash::CExponent a, const CSpecialPairCacheHash::CExponent b, const EHistoryType t)
37{
38  Print("SpecialPair!\n");
39}
Note: See TracBrowser for help on using the repository browser.