GithubHelp home page GithubHelp logo

hliasmpgh / permutation-flow-shop Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 618 KB

Approaching the PFS problem with an Object-Oriented Design

C++ 98.70% C 1.30%
heuristics localsearch optimization

permutation-flow-shop's Introduction

PFS Problem Modelling

This repository holds a model that can be used to produce solutions to the, common in the Operations Reasearch field, Permutation Flowshop Problem.

Contents

Implementations

The implementation of the models and algorithms can be found in the source directory:

  • Heuristics - The container of the heuristic methods that are used in the implementation.

  • Solution - The container of a specific 'Solution' entity. Each final solution produced by the algorithms is an instance of this class.

  • TabuList - The container of a TabuList that is being used in a Tabu Search.

Definitions

The definitions of all the entities that are being used in the implementation rest in the headers directory:

  • Solution.h - The definition of a 'Solution' of the problem. Contains all the methods and attributes that a PFSP solution should have.

  • TabuList.h - The definition of a TabuList. Contains all the methods and attributes of a List that will be used in a Tabu Seach.

  • Searches.h - All the available solution exploration algorithms.

  • Operators.h - All the available Local Search operators.

Usage

To use this implementation, first compile the project:

g++ -o solver.exe src/*.cpp

and then execute the solver:

./solver.exe

The problem input that will be used can be configured in the data.txt file. The format of the input has to be in a structure as the following:

M1: job1time job2time job3time
M2: job1time job2time job3time

for a 2-machine, 3-job problem.

Report

A brief report also exists, further detailing all of the abovementioned, using a more elegant manner.

permutation-flow-shop's People

Contributors

hliasmpgh avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.