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
ridge.h

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

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

#include "Util.h"

using namespace std;
using namespace giac;

extern context ct;

class ridge
{

  friend ostream & operator<<(ostream & out, const ridge &r);

 public:

  ridge();
  
  vector<int> verts;  
  vector<int> faceindices;
  
};

#endif
back to top