summaryrefslogtreecommitdiff
path: root/src/intersim/wavefront.hpp
blob: d0c9ba681ef0ad28be58cd75c7603611dbe82754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _WAVEFRONT_HPP_
#define _WAVEFRONT_HPP_

#include "allocator.hpp"

class Wavefront : public DenseAllocator {
   int _square;
   int _pri;

public:
   Wavefront( const Configuration &config,
              Module *parent, const string& name,
              int inputs, int outputs );
   ~Wavefront( );

   void Allocate( );
};

#endif