#include <iomanip>
#include <stdint.h>
+enum sign_type { positive, negative };
+
+
/* sizeof(E) tiene que ser 2*sizeof(N); y son los tipos nativos con los cuales
* se haran las operaciones mas basicas. */
// Tipos
typedef N native_type;
typedef E extended_type;
- enum sign_type { positive, negative };
typedef typename std::deque< native_type > chunk_type;
typedef typename chunk_type::size_type size_type;
typedef typename chunk_type::iterator iterator;