Commit aa03ccd2 authored by Yuanle Song's avatar Yuanle Song
Browse files

init commit

add Dining1.hs
parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
.stack-work/
*~

ChangeLog.md

0 → 100644
+3 −0
Original line number Diff line number Diff line
# Changelog for concurrency-demo

## Unreleased changes

LICENSE

0 → 100644
+30 −0
Original line number Diff line number Diff line
Copyright Yuanle Song (c) 2018

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.

    * Neither the name of Yuanle Song nor the names of other
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

0 → 100644
+45 −0
Original line number Diff line number Diff line
# concurrency-demo

I want to practice using async, stm libraries to solve real world problems.

## problem: Dining philosophers problem

https://en.wikipedia.org/wiki/Dining_philosophers_problem

Five silent philosophers sit at a round table with bowls of spaghetti. Forks
are placed between each pair of adjacent philosophers.

Each philosopher must alternately think and eat. However, a philosopher can
only eat spaghetti when they have both left and right forks. Each fork can be
held by only one philosopher and so a philosopher can use the fork only if it
is not being used by another philosopher. After an individual philosopher
finishes eating, they need to put down both forks so that the forks become
available to others. A philosopher can take the fork on their right or the one
on their left as they become available, but cannot start eating before getting
both forks.

Eating is not limited by the remaining amounts of spaghetti or stomach space;
an infinite supply and an infinite demand are assumed.

The problem is how to design a discipline of behavior (a concurrent algorithm)
such that no philosopher will starve; i.e., each can forever continue to
alternate between eating and thinking, assuming that no philosopher can know
when others may want to eat or think.

## problem: Elevator simulator

Design an elevator which allows concurrent user input.

feature request:
- elevator requires time to accelerate and slow down
- elevator have a maximum capacity
- user can press Up/Down button at any level
- there can be any number of user at each floor
- user have normal behavior.
  - they don't stay in elevator forever
  - they press target floor when they are in
  - they leave when target floor is arrived
- a GUI is of much help for visualizing this system.
- when total floor is high, there are buttons that allow user to press which
  floor they want to go, to help elevator scheduling stops.
- 

Setup.hs

0 → 100644
+2 −0
Original line number Diff line number Diff line
import Distribution.Simple
main = defaultMain
Loading