source: git/kernel/p_Mult_q.h @ a41f3aa

spielwiese
Last change on this file since a41f3aa was 35aab3, checked in by Hans Schönemann <hannes@…>, 20 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1014 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/***************************************************************
5 *  File:    p_Mult_q.h
6 *  Purpose: declaration of some auxillary routines for
7 *           p_Mult_q
8 *  Author:  obachman (Olaf Bachmann)
9 *  Created: 8/00
10 *  Version: $Id: p_Mult_q.h,v 1.1.1.1 2003-10-06 12:16:00 Singular Exp $
11 *******************************************************************/
12#include "mod2.h"
13#include "structs.h"
14
15// Use buckets if min(pLength(p), pLength(q)) >= MIN_LENGTH_BUCKET
16// Not thoroughly tested what is best
17#define MIN_LENGTH_BUCKET 10
18
19//  return TRUE and lp == pLength(p), lq == pLength(q),
20//              if min(pLength(p), pLength(q)) >= min
21//         FALSE if min(pLength(p), pLength(q)) < min
22//              and lp >= lq if pLength(p) >= pLength(lq)
23//                  lp < lq  if pLength(p) < pLength(q)
24BOOLEAN pqLength(poly p, poly q, int &lp, int &lq, const int min);
25
Note: See TracBrowser for help on using the repository browser.