https://hal.archives-ouvertes.fr/hal-02398953
Raw File
Tip revision: c33910a29d53f4e137c225b21a8d59e43327cbf9 authored by Software Heritage on 08 December 2019, 12:26:32 UTC
hal: Deposit 351 in collection hal
Tip revision: c33910a
WVector.h

#ifndef WVECTOR_H
#define WVECTOR_H
 
#include <iostream>
#include <giac/config.h>
#include <giac/giac.h>

#include <string>
#include <map>
#include <algorithm>

using namespace std;
using namespace giac;

extern context ct;

class WVector
{

 public:

  gen coords;
  vector<int> word;

  vector<int> faceindices; // used only for vertices

  int reftovlist; // will be used only when the WVector is a vertex in a prism

  WVector();
  WVector(gen V, vector<int> w);
  
};

#endif
back to top