New Weyl group algorithm
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#define BV_QWORD_RANK 10
|
||||
#include "bitvec.h"
|
||||
|
||||
#include "coxeter.h"
|
||||
#include "weyl.h"
|
||||
|
||||
#define DEBUG(msg, ...) do{fprintf(stderr, msg, ##__VA_ARGS__); }while(0)
|
||||
|
||||
@@ -16,7 +16,7 @@ typedef struct _edgelist {
|
||||
struct _edgelist *next;
|
||||
} edgelist_t;
|
||||
|
||||
// describes an element of the Coxeter group; only "opposite" and "bruhat_lower" are being used for enumerating thickenings; everything else is just needed for initialization or output
|
||||
// describes an element of the Weyl group; only "opposite" and "bruhat_lower" are being used for enumerating thickenings; everything else is just needed for initialization or output
|
||||
typedef struct {
|
||||
int *word;
|
||||
int wordlength;
|
||||
@@ -26,6 +26,7 @@ typedef struct {
|
||||
edgelist_t *bruhat_lower;
|
||||
edgelist_t *bruhat_higher;
|
||||
int is_hyperplane_reflection; // boolean value
|
||||
weylid_t id;
|
||||
} node_t;
|
||||
|
||||
// printing functions
|
||||
|
||||
Reference in New Issue
Block a user