https://github.com/ialhashim/topo-blend
Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
Tip revision: 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC
Create README.md
Tip revision: 39b1361
PathEvaluator.h
#pragma once
#include <QObject>

#include "Blender.h"

class PathEvaluator : public QObject
{
    Q_OBJECT
public:
    explicit PathEvaluator(Blender * blender, QObject *parent = 0);

public slots:
	// Current experiments
	void test_filtering();
	void test_topoDistinct();

	QVector<ScheduleType> filteredSchedules( QVector<ScheduleType> randomSchedules );

	void evaluateFilter( QVector<Structure::Graph*> allGraphs );

private:
	Blender * b;

signals:
    void evaluationDone();
	void progressChanged(double);
};
back to top