Copyright | (c) 2013-2016, the HLogo team |
---|---|
License | BSD3 |
Maintainer | Nikolaos Bezirgiannis <bezirgia@cwi.nl> |
Stability | experimental |
Safe Haskell | None |
Language | Haskell98 |
Language.Logo
Contents
- Running an HLogo program
- Declaring new breeds
- User-provided variables
- Agent related
- Turtle related
- Patch related
- Link related
- Random related
- Color
- List related
- Math
- Misc
- Input/Output
- IO Operations
- move_to & Internal (needed for Keyword module)
- The type class
- Built-in exceptions imported from Haskell base
- Exceptions specific to HLogo
- The typeclasses (interfaces) of each participant in a simulation
- The Observer datastructure
- The agents' datastructures holding the attributes of the agents
- The containers storing multiple agents
Description
Main wrapper module; the only module that should be imported by the model
- run :: [String] -> Q [Dec]
- runT :: C Observer () IO b -> IO b
- breeds :: [String] -> Q [Dec]
- directed_link_breed :: [String] -> Q [Dec]
- undirected_link_breed :: [String] -> Q [Dec]
- globals :: [String] -> Q [Dec]
- patches_own :: [String] -> Q [Dec]
- turtles_own :: [String] -> Q [Dec]
- links_own :: [String] -> Q [Dec]
- breeds_own :: String -> [String] -> Q [Dec]
- link_breeds_own :: String -> [String] -> Q [Dec]
- self :: STMorIO m => C s _s' m s
- myself :: STMorIO m => C s s' m s'
- other :: (STMorIO m, Eq s) => [s] -> C s _s' m [s]
- count :: (STMorIO m, Foldable t) => t a -> C _s _s' m Int
- nobody :: (STMorIO m, Agent a) => C _s _s' m a
- towards :: (TurtlePatch a, TurtlePatch s) => a -> C s _s' m Double
- allp :: (Foldable t, Agent (t a)) => C (One (t a)) p IO Bool -> t a -> C p p' IO Bool
- at_points :: TurtlePatch a => [a] -> [(Double, Double)] -> C Turtle _s' STM [a]
- towardsxy :: t
- in_cone :: t
- every :: Double -> C _s _s' IO a -> C _s _s' IO ()
- wait :: Double -> C _s _s' IO ()
- carefully :: C _s _s' STM a -> C _s _s' STM a -> C _s _s' STM a
- die :: TurtleLink s => C s _s' STM ()
- turtles_here :: (TurtlePatch s, STMorIO m) => C s _s' m Turtles
- turtles_at :: (TurtlePatch s, STMorIO m) => Double -> Double -> C s _s' m Turtles
- turtles_on :: ((~#) * * (Many s Turtles) [IntMap a], TurtlePatch (One s), Agent s) => s -> ReaderT * (p, p', IORef TFGen) IO (IntMap a)
- jump :: Double -> C Turtle _s' STM ()
- setxy :: Double -> Double -> C Turtle _s' STM ()
- forward :: Double -> C Turtle _s' STM ()
- fd :: Double -> C Turtle _s' STM ()
- back :: Double -> C Turtle _s' STM ()
- bk :: Double -> C Turtle _s' STM ()
- turtles :: STMorIO m => C _s _s' m Turtles
- turtle :: STMorIO m => Int -> C _s _s' m Turtle
- turtle_set :: STMorIO m => [C _s _s' m Turtle] -> C _s _s' m Turtles
- face :: TurtlePatch a => a -> C Turtle _s' STM ()
- xcor :: STMorIO m => C Turtle _s' m Double
- set_breed :: TurtleLink s => String -> C s _s' STM ()
- with_breed :: TurtleLink s => (String -> String) -> C s _s' STM ()
- set_color :: TurtleLink s => Double -> C s _s' STM ()
- with_color :: TurtleLink s => (Double -> Double) -> C s _s' STM ()
- set_label_color :: TurtleLink s => Double -> C s _s' STM ()
- with_label_color :: TurtleLink s => (Double -> Double) -> C s _s' STM ()
- with_label :: TurtleLink s => (String -> String) -> C s _s' STM ()
- set_xcor :: Double -> C Turtle _s' STM ()
- heading :: STMorIO m => C Turtle _s' m Double
- set_heading :: Double -> C Turtle _s' STM ()
- with_heading :: (Double -> Double) -> C Turtle _s' STM ()
- ycor :: STMorIO m => C Turtle _s' m Double
- set_ycor :: Double -> C Turtle _s' STM ()
- who :: STMorIO m => C Turtle _s' m Int
- color :: STMorIO m => TurtleLink s => C s _s' m Double
- breed :: STMorIO m => TurtleLink s => C s _s' m String
- dx :: STMorIO m => C Turtle _s' m Double
- dy :: STMorIO m => C Turtle _s' m Double
- home :: C Turtle _s' STM ()
- right :: Double -> C Turtle _s' STM ()
- rt :: Double -> C Turtle _s' STM ()
- left :: Double -> C Turtle _s' STM ()
- lt :: Double -> C Turtle _s' STM ()
- downhill :: t
- downhill4 :: t
- hide_turtle :: C Turtle _s' STM ()
- ht :: C Turtle _s' STM ()
- show_turtle :: C Turtle _s' STM ()
- st :: C Turtle _s' STM ()
- pen_down :: C Turtle _s' STM ()
- pd :: C Turtle _s' STM ()
- pen_up :: C Turtle _s' STM ()
- pu :: C Turtle _s' STM ()
- pen_erase :: C Turtle _s' STM ()
- pe :: C Turtle _s' STM ()
- no_turtles :: STMorIO m => C _s _s' m Turtles
- hatch :: Int -> C Turtle _s' STM [Turtle]
- set_size :: Double -> C Turtle _s' STM ()
- with_size :: (Double -> Double) -> C Turtle _s' STM ()
- with_shape :: TurtleLink s => (String -> String) -> C s _s' STM ()
- can_movep :: STMorIO m => Double -> C Turtle _s' m Bool
- patch_at :: (STMorIO m, TurtlePatch s) => Double -> Double -> C s _s' m Patch
- patch_here :: STMorIO m => C Turtle _s' m Patch
- patch_ahead :: STMorIO m => Double -> C Turtle _s' m Patch
- patches :: STMorIO m => C _s _s' m Patches
- patch :: STMorIO m => Double -> Double -> C _s _s' m Patch
- patch_set :: STMorIO m => [C _s _s' m Patch] -> C _s _s' m Patches
- no_patches :: STMorIO m => C _s _s' m Patches
- pxcor :: (TurtlePatch s, STMorIO m) => C s _s' m Int
- pycor :: (TurtlePatch s, STMorIO m) => C s _s' m Int
- pcolor :: STMorIO m => TurtlePatch s => C s _s' m Double
- plabel :: STMorIO m => TurtlePatch s => C s _s' m String
- neighbors :: (STMorIO m, TurtlePatch s) => C s _s' m Patches
- neighbors4 :: (STMorIO m, TurtlePatch s) => C s _s' m Patches
- set_plabel :: TurtlePatch s => String -> C s _s' STM ()
- with_plabel :: TurtlePatch s => (String -> String) -> C s _s' STM ()
- set_pcolor :: TurtlePatch s => Double -> C s _s' STM ()
- with_pcolor :: TurtlePatch s => (Double -> Double) -> C s _s' STM ()
- with_plabel_color :: TurtlePatch s => (Double -> Double) -> C s _s' STM ()
- hide_link :: C Link _s' STM ()
- show_link :: C Link _s' STM ()
- link_length :: C Link _s' STM Double
- link :: STMorIO m => Int -> Int -> C _s _s' m Link
- links :: STMorIO m => C _s _s' m Links
- my_links :: C Turtle _s' STM [Link]
- my_out_links :: C Turtle _s' STM [Link]
- my_in_links :: C Turtle _s' STM [Link]
- no_links :: STMorIO m => C _s _s' m Links
- tie :: C Link _s' STM ()
- untie :: C Link _s' STM ()
- link_set :: STMorIO m => [C _s _s' m Link] -> C _s _s' m Links
- end1 :: C Link _s' STM Turtle
- end2 :: C Link _s' STM Turtle
- is_directed_linkp :: STMorIO m => Link -> C _s _s' m Bool
- is_undirected_linkp :: STMorIO m => Link -> C _s _s' m Bool
- random_xcor :: C s _s' IO Double
- random_ycor :: C s _s' IO Double
- random_pxcor :: C s _s' IO Int
- random_pycor :: C s _s' IO Int
- random :: (Num b, Real a) => a -> C s _s' IO b
- random_float :: Double -> C s _s' IO Double
- new_seed :: C _s _s' STM Int
- random_seed :: Int -> C s _s' IO ()
- random_exponential :: t -> t1
- random_gamma :: t -> t1 -> t2
- random_normal :: t -> t1 -> t2
- random_poisson :: t -> t1
- black :: Double
- white :: Double
- gray :: Double
- red :: Double
- orange :: Double
- brown :: Double
- yellow :: Double
- green :: Double
- lime :: Double
- turquoise :: Double
- cyan :: Double
- sky :: Double
- blue :: Double
- violet :: Double
- magenta :: Double
- pink :: Double
- scale_color :: STMorIO m => Double -> C _s _s' m Double -> Double -> Double -> C _s _s' m Double
- extract_rgb :: Double -> [Word8]
- approximate_rgb :: a
- sum :: Foldable t => forall a. Num a => t a -> a
- anyp :: (STMorIO m, Foldable t) => t a -> C _s _s' m Bool
- item :: Int -> [a] -> a
- one_of :: Foldable t => t a -> C s _s' IO a
- min_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> ReaderT * (p, p', IORef TFGen) IO b
- max_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> ReaderT * (p, p', IORef TFGen) IO b
- remove :: t
- remove_item :: t
- replace_item :: t
- shuffle :: Eq a => [a] -> C s _s' IO [a]
- sublist :: [a] -> Int -> Int -> [a]
- substring :: [a] -> Int -> Int -> [a]
- n_of :: Int -> Patches -> C s _s' IO Patches
- butfirst :: [a] -> [a]
- butlast :: [a] -> [a]
- emptyp :: [a] -> Bool
- first :: [a] -> a
- foreach :: STMorIO m => [a] -> (a -> C _s _s' m b) -> C _s _s' m ()
- fput :: a -> [a] -> [a]
- last :: [a] -> a
- length :: STMorIO m => [a] -> C _s _s' m Int
- list :: t -> t -> [t]
- lput :: a -> [a] -> [a]
- map :: (a -> b) -> [a] -> [b]
- memberp :: Eq a => a -> [a] -> Bool
- position :: (a -> Bool) -> [a] -> Maybe a
- reduce :: (b -> a -> b) -> b -> [a] -> b
- remove_duplicates :: (STMorIO m, Eq a) => [a] -> C _s _s' m [a]
- reverse :: [a] -> [a]
- sentence :: [a] -> [a] -> [a]
- sort_ :: (STMorIO m, Ord a) => [a] -> C _s _s' m [a]
- sort_by :: STMorIO m => (a -> a -> Ordering) -> [a] -> C _s _s' m [a]
- sort_on :: a
- max_ :: Ord a => [a] -> a
- min_ :: Ord a => [a] -> a
- n_values :: (Eq a, STMorIO m, Num a) => a -> (a -> C _s _s' m t) -> C _s _s' m [t]
- word :: Show a => [a] -> String
- xor :: Bool -> Bool -> Bool
- e :: Double
- exp :: Floating a => a -> a
- pi :: Floating a => a
- cos_ :: Double -> Double
- sin_ :: Double -> Double
- tan_ :: Double -> Double
- mod_ :: Double -> Int -> Double
- acos_ :: Double -> Double
- asin_ :: Double -> Double
- atan_ :: RealFloat r => r -> r -> r
- int :: (Integral b, RealFrac a) => a -> b
- log_ :: Double -> Double -> Double
- ln :: Floating a => a -> a
- mean :: [Double] -> Double
- median :: [Double] -> Double
- modes :: t
- variance :: t
- standard_deviation :: t -> t1
- subtract_headings :: STMorIO m => Double -> Double -> C _s _s' m Double
- abs_ :: (STMorIO m, Num a) => a -> C _s _s' m a
- floor :: RealFrac a => forall b. Integral b => a -> b
- ceiling :: RealFrac a => forall b. Integral b => a -> b
- remainder :: Int -> Int -> Int
- round :: RealFrac a => forall b. Integral b => a -> b
- sqrt :: Floating a => a -> a
- patch_size :: STMorIO m => C _s _s' m Int
- max_pxcor :: STMorIO m => C _s _s' m Int
- max_pycor :: STMorIO m => C _s _s' m Int
- min_pxcor :: STMorIO m => C _s _s' m Int
- min_pycor :: STMorIO m => C _s _s' m Int
- world_width :: STMorIO m => C _s _s' m Int
- world_height :: STMorIO m => C _s _s' m Int
- clear_all_plots :: C Observer () IO ()
- clear_drawing :: C Observer () IO ()
- cd :: C Observer () IO ()
- clear_output :: C Observer () IO ()
- clear_turtles :: C Observer () IO ()
- ct :: C Observer () IO ()
- clear_patches :: C Observer () IO ()
- cp :: C Observer () IO ()
- clear_links :: C Observer () IO ()
- clear_ticks :: C Observer () IO ()
- reset_ticks :: C Observer () IO ()
- tick :: C Observer () IO ()
- tick_advance :: Double -> C Observer () IO ()
- ticks :: STMorIO m => C _s _s' m Double
- histogram :: t
- repeat_ :: STMorIO m => Int -> C _s _s' m a -> C _s _s' m ()
- report :: STMorIO m => a -> C _s _s' m a
- loop :: C _s _s' IO a -> C _s _s' IO ()
- stop :: a
- while :: C _s _s' IO Bool -> C _s _s' IO a -> C _s _s' IO ()
- stats_stm :: C Observer () IO (String, String, String)
- show :: (STMorIO m, Show s, Show a) => a -> C s _s' m ()
- print :: (STMorIO m, Show a) => a -> C _s _s' m ()
- read_from_string :: Read a => String -> a
- timer :: STMorIO m => C _s _s' m Double
- reset_timer :: STMorIO m => C _s _s' m ()
- atomic :: C _s _s' STM a -> C _s _s' IO a
- ask :: Agent s => C (One s) p IO _b -> s -> C p p' IO ()
- of_ :: Agent s => C (One s) p IO b -> s -> C p p' IO (Many s b)
- snapshot :: C Observer () IO ()
- class Agent s => TurtlePatch s where
- class Monad m => STMorIO m where
- readTVarSI :: STMorIO m => TVar a -> C s _s' m a
- throw :: Exception e => e -> a
- catch :: Exception e => C _s _s' STM a -> (e -> C _s _s' STM a) -> C _s _s' STM a
- catchIO :: Exception e => C _s _s' IO a -> (e -> C _s _s' IO a) -> C _s _s' IO a
- evaluate :: a -> IO a
- class (Typeable * e, Show e) => Exception e
- assert :: Bool -> a -> a
- data SomeException :: *
- data IOException :: *
- data ArithException :: *
- newtype AssertionFailed :: * = AssertionFailed String
- data AsyncException :: *
- data NestedAtomically :: * = NestedAtomically
- data BlockedIndefinitelyOnSTM :: * = BlockedIndefinitelyOnSTM
- data Deadlock :: * = Deadlock
- data ErrorCall :: * = ErrorCallWithLocation String String
- data TypeException = TypeException String
- data StopException = StopException
- data DevException = DevException
- class Agent s where
- class With s where
- class Agent s => TurtleLink s where
- type C s s' m a = ReaderT (s, s', IORef TFGen) m a
- data Observer
- data Turtle = MkTurtle {
- who_ :: !Int
- tbreed_ :: TVar String
- tcolor_ :: TVar Double
- heading_ :: TVar Double
- xcor_ :: TVar Double
- ycor_ :: TVar Double
- tshape_ :: TVar String
- tlabel_ :: TVar String
- tlabel_color_ :: TVar Double
- hiddenp_ :: TVar Bool
- size_ :: TVar Double
- pen_size_ :: TVar Double
- pen_mode_ :: TVar PenMode
- tvars_ :: Vector (TVar Double)
- data Patch = MkPatch {}
- data Link = MkLink {}
- data PenMode
- data TieMode
- type Patches = Vector Patch
- type Turtles = IntMap Turtle
- type Links = Map (Int, Int) Link
- type family One a where ...
- type family Many a b where ...
- module Prelude
- forever :: Applicative f => f a -> f b
- when :: Applicative f => Bool -> f () -> f ()
- liftM :: Monad m => (a1 -> r) -> m a1 -> m r
- liftM2 :: Monad m => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r
Running an HLogo program
run :: [String] -> Q [Dec] Source #
The entrypoint of a non-interactive HLogo. Takes as input a list of HLogo procedure names (as strings) to run in sequence. The program exits either when the last procedure stops, or when a program exception occurs.
NOTE TO SELF: cannot have run
take procedures as values of 'CIO ()', possibly for the same reason as breeds_own
, i.e. _GHC stage restriction_.
It has to take either a list of strings or a list of symbol names (this was chosen).
Declaring new breeds
breeds :: [String] -> Q [Dec] Source #
Takes a 2-length list, with 1st element the plural name of the breeds (e.g. "wolves") and as 2nd element the singlular form (e.g. "wolf").
NB: breed agents share the same who counter (same namespace). The agentset turtles
returns all turtle-like agents (both turtles and any-breeds).
directed_link_breed :: [String] -> Q [Dec] Source #
Creates a directed-linkbreed. The arguments behave the same as breeds
.
undirected_link_breed :: [String] -> Q [Dec] Source #
Creates an undirected-linkbreed. The arguments behave the same as breeds
.
User-provided variables
globals :: [String] -> Q [Dec] Source #
globals macro takes a list of variable names (as strings) and creates top-level global variables.
Global variables have type Double
and are initialized to 0.
patches_own :: [String] -> Q [Dec] Source #
patches_own macro takes a list of variable names (as strings) and creates corresponding field variables for each patch agent.
This user-declared patch-field variables have type Double
and are initialized to 0.
turtles_own :: [String] -> Q [Dec] Source #
turtles_own macro takes a list of variable names (as strings) and creates corresponding field variables for each turtle agent.
This user-declared turtle-field variables have type Double
and are initialized to 0.
NB: turtle fields are inherited to all turtle-like agents, i.e. both the turtle agents as well as all any-breed agents.
links_own :: [String] -> Q [Dec] Source #
links_own macro takes a list of variable names (as strings) and creates corresponding field variables for each link agent.
This user-declared link-field variables have type Double
and are initialized to 0.
NB: link fields are inherited to all link-like agents, i.e. both the link agents as well as all any-linkbreed agents.
breeds_own :: String -> [String] -> Q [Dec] Source #
breeds_own macro takes a list of variable names (as strings) and creates corresponding field variables for each breed-exact agent.
A specific breed must be declared with breeds
.
This user-declared breed-field variables have type Double
and are initialized to 0.
NOTE TO SELF: also applies for linkbreeds_own: this cannot become "wolves_own", etc. because of the _GHC stage restriction_. This means
that the keywords breeds
and breeds_own
have to be defined in separate Haskell modules.
link_breeds_own :: String -> [String] -> Q [Dec] Source #
Like breeds_own
but for linkbreeds, which are declared with directed_link_breed
or undirected_link_breed
.
Agent related
Arguments
:: STMorIO m | |
=> C s _s' m s | returns a list (set) of agentrefs to be compatible with the 'turtle-set' function |
Reports this turtle or patch.
myself :: STMorIO m => C s s' m s' Source #
"self" and "myself" are very different. "self" is simple; it means "me". "myself" means "the turtle or patch who asked me to do what I'm doing right now." When an agent has been asked to run some code, using myself in that code reports the agent (turtle or patch) that did the asking. NB: Implemented for ask, of, with
other :: (STMorIO m, Eq s) => [s] -> C s _s' m [s] Source #
Warning: TODO: not yet working for the new specialized agentsets
Reports an agentset which is the same as the input agentset but omits this agent.
count :: (STMorIO m, Foldable t) => t a -> C _s _s' m Int Source #
Reports the number of agents in the given agentset.
nobody :: (STMorIO m, Agent a) => C _s _s' m a Source #
This is a special value which some primitives such as turtle, one-of, max-one-of, etc. report to indicate that no agent was found. Also, when a turtle dies, it becomes equal to nobody.
It can be returned from all primitives that normally return 1 agent. It can also be returned from a turtle reference that got died or the turtle
primitive to a dead agent,, like implicitly nullifying the agent.
towards :: (TurtlePatch a, TurtlePatch s) => a -> C s _s' m Double Source #
Reports the heading from this agent to the given agent.
at_points :: TurtlePatch a => [a] -> [(Double, Double)] -> C Turtle _s' STM [a] Source #
Warning: TODO: also has to support the Observer as Caller. A TurtleObserver typeclass
Reports a subset of the given agentset that includes only the agents on the patches the given distances away from this agent. The distances are specified as a list of two-item lists, where the two items are the x and y offsets. If the caller is the observer, then the points are measured relative to the origin, in other words, the points are taken as absolute patch coordinates. If the caller is a turtle, the points are measured relative to the turtle's exact location, and not from the center of the patch under the turtle.
Warning: TODO
Reports the heading from the turtle or patch towards the point (x,y).
every :: Double -> C _s _s' IO a -> C _s _s' IO () Source #
Runs the given commands only if it's been more than number seconds since the last time this agent ran them in this context. Otherwise, the commands are skipped. | NB: Works differently than NetLogo, in that only the calling thread is suspended, not the whole simulation
wait :: Double -> C _s _s' IO () Source #
Wait the given number of seconds. (This needn't be an integer; you can specify fractions of seconds.) Note that you can't expect complete precision; the agent will never wait less than the given amount, but might wait slightly more. | NB: Works differently than NetLogo, in that only the calling thread is suspended, not the whole simulation
carefully :: C _s _s' STM a -> C _s _s' STM a -> C _s _s' STM a Source #
Warning: TODO
Runs commands1. If a runtime error occurs inside commands1, NetLogo won't stop and alert the user that an error occurred. It will suppress the error and run commands2 instead.
Turtle related
turtles_here :: (TurtlePatch s, STMorIO m) => C s _s' m Turtles Source #
Warning: TODO: use a custom filterM for IntMap, instead of (fromList . filterM. toList)
Reports an agentset containing all the turtles on the caller's patch (including the caller itself if it's a turtle).
Arguments
:: (TurtlePatch s, STMorIO m) | |
=> Double | |
-> Double | |
-> C s _s' m Turtles | dx -> dy -> CSTM (Set AgentRef) |
Warning: TODO: use a custom filterM for IntMap, instead of (fromList . filterM. toList)
Reports an agentset containing the turtles on the patch (dx, dy) from the caller. (The result may include the caller itself if the caller is a turtle.)
turtles_on :: ((~#) * * (Many s Turtles) [IntMap a], TurtlePatch (One s), Agent s) => s -> ReaderT * (p, p', IORef TFGen) IO (IntMap a) Source #
Reports an agentset containing all the turtles that are on the given patch or patches, or standing on the same patch as the given turtle or turtles.
jump :: Double -> C Turtle _s' STM () Source #
The turtle moves forward by number units all at once (rather than one step at a time as with the forward command).
setxy :: Double -> Double -> C Turtle _s' STM () Source #
The turtle sets its x-coordinate to x and its y-coordinate to y.
forward :: Double -> C Turtle _s' STM () Source #
The turtle moves forward by number steps, one step at a time. (If number is negative, the turtle moves backward.)
back :: Double -> C Turtle _s' STM () Source #
The turtle moves backward by number steps. (If number is negative, the turtle moves forward.)
turtle :: STMorIO m => Int -> C _s _s' m Turtle Source #
Reports the turtle with the given who number, or nobody if there is no such turtle. For breeded turtles you may also use the single breed form to refer to them.
turtle_set :: STMorIO m => [C _s _s' m Turtle] -> C _s _s' m Turtles Source #
Reports an agentset containing all of the turtles anywhere in any of the inputs. NB: HLogo no support for nested turtle_set concatenation/flattening
xcor :: STMorIO m => C Turtle _s' m Double Source #
This is a built-in turtle variable. It holds the current x coordinate of the turtle.
with_breed :: TurtleLink s => (String -> String) -> C s _s' STM () Source #
with_color :: TurtleLink s => (Double -> Double) -> C s _s' STM () Source #
set_label_color :: TurtleLink s => Double -> C s _s' STM () Source #
with_label_color :: TurtleLink s => (Double -> Double) -> C s _s' STM () Source #
with_label :: TurtleLink s => (String -> String) -> C s _s' STM () Source #
heading :: STMorIO m => C Turtle _s' m Double Source #
This is a built-in turtle variable. It indicates the direction the turtle is facing.
ycor :: STMorIO m => C Turtle _s' m Double Source #
This is a built-in turtle variable. It holds the current y coordinate of the turtle.
who :: STMorIO m => C Turtle _s' m Int Source #
This is a built-in turtle variable. It holds the turtle's "who number" or ID number, an integer greater than or equal to zero. You cannot set this variable; a turtle's who number never changes.
color :: STMorIO m => TurtleLink s => C s _s' m Double Source #
This is a built-in turtle variable. It holds the turtle's "who number" or ID number, an integer greater than or equal to zero. You cannot set this variable; a turtle's who number never changes.
dx :: STMorIO m => C Turtle _s' m Double Source #
Reports the x-increment (the amount by which the turtle's xcor would change) if the turtle were to take one step forward in its current heading.
dy :: STMorIO m => C Turtle _s' m Double Source #
Reports the y-increment (the amount by which the turtle's ycor would change) if the turtle were to take one step forward in its current heading.
right :: Double -> C Turtle _s' STM () Source #
The turtle turns right by number degrees. (If number is negative, it turns left.)
left :: Double -> C Turtle _s' STM () Source #
The turtle turns left by number degrees. (If number is negative, it turns right.)
Warning: TODO
Moves the turtle to the neighboring patch with the lowest value for patch-variable. If no neighboring patch has a smaller value than the current patch, the turtle stays put. If there are multiple patches with the same lowest value, the turtle picks one randomly. Non-numeric values are ignored. downhill considers the eight neighboring patches
Warning: TODO
Moves the turtle to the neighboring patch with the lowest value for patch-variable. If no neighboring patch has a smaller value than the current patch, the turtle stays put. If there are multiple patches with the same lowest value, the turtle picks one randomly. Non-numeric values are ignored. downhill4 only considers the four neighbors.
pen_down :: C Turtle _s' STM () Source #
The turtle changes modes between drawing lines, removing lines or neither.
pen_up :: C Turtle _s' STM () Source #
The turtle changes modes between drawing lines, removing lines or neither.
pen_erase :: C Turtle _s' STM () Source #
The turtle changes modes between drawing lines, removing lines or neither.
hatch :: Int -> C Turtle _s' STM [Turtle] Source #
This turtle creates number new turtles. Each new turtle inherits of all its variables, including its location, from its parent. (Exceptions: each new turtle will have a new who number)
with_shape :: TurtleLink s => (String -> String) -> C s _s' STM () Source #
can_movep :: STMorIO m => Double -> C Turtle _s' m Bool Source #
Warning: TODO: test it
Reports true if this turtle can move distance in the direction it is facing without violating the topology; reports false otherwise.
Patch related
patch_at :: (STMorIO m, TurtlePatch s) => Double -> Double -> C s _s' m Patch Source #
Reports the patch at (dx, dy) from the caller, that is, the patch containing the point dx east and dy patches north of this agent.
patch_here :: STMorIO m => C Turtle _s' m Patch Source #
patch-here reports the patch under the turtle.
patch_ahead :: STMorIO m => Double -> C Turtle _s' m Patch Source #
Reports the single patch that is the given distance "ahead" of this turtle, that is, along the turtle's current heading.
patch :: STMorIO m => Double -> Double -> C _s _s' m Patch Source #
Given the x and y coordinates of a point, reports the patch containing that point.
patch_set :: STMorIO m => [C _s _s' m Patch] -> C _s _s' m Patches Source #
Reports an agentset containing all of the patches anywhere in any of the inputs. NB: HLogo no support for nested patch_set concatenation/flattening
pxcor :: (TurtlePatch s, STMorIO m) => C s _s' m Int Source #
These are built-in patch variables. They hold the x and y coordinate of the patch. They are always integers. You cannot set these variables, because patches don't move
pycor :: (TurtlePatch s, STMorIO m) => C s _s' m Int Source #
These are built-in patch variables. They hold the x and y coordinate of the patch. They are always integers. You cannot set these variables, because patches don't mov
neighbors :: (STMorIO m, TurtlePatch s) => C s _s' m Patches Source #
Reports an agentset containing the 8 surrounding patches
neighbors4 :: (STMorIO m, TurtlePatch s) => C s _s' m Patches Source #
Reports an agentset containing the 4 surrounding patches
set_plabel :: TurtlePatch s => String -> C s _s' STM () Source #
with_plabel :: TurtlePatch s => (String -> String) -> C s _s' STM () Source #
set_pcolor :: TurtlePatch s => Double -> C s _s' STM () Source #
with_pcolor :: TurtlePatch s => (Double -> Double) -> C s _s' STM () Source #
with_plabel_color :: TurtlePatch s => (Double -> Double) -> C s _s' STM () Source #
Link related
link_length :: C Link _s' STM Double Source #
Reports the distance between the endpoints of the link.
link :: STMorIO m => Int -> Int -> C _s _s' m Link Source #
Given the who numbers of the endpoints, reports the link connecting the turtles. If there is no such link reports nobody. To refer to breeded links you must use the singular breed form with the endpoints.
my_links :: C Turtle _s' STM [Link] Source #
Warning: TODO
Report the undirected link between turtle and the caller. If no link exists then it reports nobody. link_with :: [Turtle] -> C Turtle _s' STM [Link] link_with [MkTurtle {who_=x}] = do (MkTurtle {who_=y},_) <- RWS.ask lxy <- link x y lyx <- link y x return $ case (lxy,lyx) of ([Nobody], [Nobody]) -> [Nobody] ([Nobody], _) -> error "directed link" ([LinkRef _ _], [LinkRef _ _]) -> lxy -- return arbitrary 1 of the two link positions (_, [Nobody]) -> error "directed link" _ -> throw DevException link_with a = throw $ TypeException "single turtle"
Report the directed link from turtle to the caller. If no link exists then it reports nobody. in_link_from :: [Turtle] -> C Turtle _s' STM [Link] in_link_from [MkTurtle {who_=x}] = do (MkTurtle {who_=y},_) <- RWS.ask lxy <- link x y lyx <- link y x return $ case (lxy,lyx) of ([Nobody], _) -> [Nobody] (_, [Nobody]) -> lxy ([LinkRef _ _], [LinkRef _ _]) -> error "undirected link" _ -> throw DevException in_link_from a = throw $ TypeException "turtle"
Reports the directed link from the caller to turtle. If no link exists then it reports nobody. out_link_to :: [Turtle] -> C Turtle _s' STM [Link] out_link_to [MkTurtle {who_=x}] = do (MkTurtle {who_=y},_) <- RWS.ask lxy <- link x y lyx <- link y x return $ case (lyx,lxy) of ([Nobody], _) -> [Nobody] (_, [Nobody]) -> lyx ([LinkRef _ _], [LinkRef _ _]) -> error "undirected link" _ -> throw DevException out_link_to a = throw $ TypeException "turtle" (head a)
Reports an agentset of all undirected links connected to the caller.
my_out_links :: C Turtle _s' STM [Link] Source #
Warning: TODO
Reports an agentset of all the directed links going out from the caller to other nodes.
my_in_links :: C Turtle _s' STM [Link] Source #
Warning: TODO
Reports an agentset of all the directed links coming in from other nodes to the caller.
tie :: C Link _s' STM () Source #
Ties end1 and end2 of the link together. If the link is a directed link end1 is the root turtle and end2 is the leaf turtle. The movement of the root turtle affects the location and heading of the leaf turtle. If the link is undirected the tie is reciprocal so both turtles can be considered root turtles and leaf turtles. Movement or change in heading of either turtle affects the location and heading of the other turtle.
untie :: C Link _s' STM () Source #
Unties end2 from end1 (sets tie-mode to "none") if they were previously tied together. If the link is an undirected link, then it will untie end1 from end2 as well. It does not remove the link between the two turtles.
link_set :: STMorIO m => [C _s _s' m Link] -> C _s _s' m Links Source #
Reports an agentset containing all of the links anywhere in any of the inputs. NB: HLogo no support for nested turtle_set concatenation/flattening
Random related
random_xcor :: C s _s' IO Double Source #
Reports a random floating point number from the allowable range of turtle coordinates along the given axis, x .
random_ycor :: C s _s' IO Double Source #
Reports a random floating point number from the allowable range of turtle coordinates along the given axis, y.
random_pxcor :: C s _s' IO Int Source #
Reports a random integer ranging from min-pxcor to max-pxcor inclusive.
random_pycor :: C s _s' IO Int Source #
Reports a random integer ranging from min-pycor to max-pycor inclusive.
random :: (Num b, Real a) => a -> C s _s' IO b Source #
Warning: maybe it can become faster with some small fraction added to the input or subtracted and then floored
If number is positive, reports a random integer greater than or equal to 0, but strictly less than number. If number is negative, reports a random integer less than or equal to 0, but strictly greater than number. If number is zero, the result is always 0 as well.
random_float :: Double -> C s _s' IO Double Source #
If number is positive, reports a random floating point number greater than or equal to 0 but strictly less than number. If number is negative, reports a random floating point number less than or equal to 0, but strictly greater than number. If number is zero, the result is always 0.
new_seed :: C _s _s' STM Int Source #
Reports a number suitable for seeding the random number generator. The numbers reported by new-seed are based on the current date and time in milliseconds. Unlike NetLogo's new-seed, HLogo may report the same number twice in succession.
NB: taken from Haskell's random library
random_exponential :: t -> t1 Source #
Warning: TODO
random-exponential reports an exponentially distributed random floating point number.
random_gamma :: t -> t1 -> t2 Source #
Warning: TODO
random-gamma reports a gamma-distributed random floating point number as controlled by the floating point alpha and lambda parameters.
random_normal :: t -> t1 -> t2 Source #
Warning: TODO
random-normal reports a normally distributed random floating point number.
random_poisson :: t -> t1 Source #
Warning: TODO
random-poisson reports a Poisson-distributed random integer.
Color
scale_color :: STMorIO m => Double -> C _s _s' m Double -> Double -> Double -> C _s _s' m Double Source #
Reports a shade of color proportional to the value of number.
extract_rgb :: Double -> [Word8] Source #
approximate_rgb :: a Source #
Warning: TODO
List related
sum :: Foldable t => forall a. Num a => t a -> a #
The sum
function computes the sum of the numbers of a structure.
anyp :: (STMorIO m, Foldable t) => t a -> C _s _s' m Bool Source #
Reports true if the given agentset is non-empty, false otherwise.
item :: Int -> [a] -> a Source #
On lists, reports the value of the item in the given list with the given index.
one_of :: Foldable t => t a -> C s _s' IO a Source #
From an agentset, reports a random agent. If the agentset is empty, reports nobody. From a list, reports a random list item. It is an error for the list to be empty.
min_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> ReaderT * (p, p', IORef TFGen) IO b Source #
Warning: TODO: currently deterministic and no randomness on tie breaking
Reports a random agent in the agentset that reports the lowest value for the given reporter. If there is a tie, this command reports one random agent that meets the condition. min_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> C p p' IO b
max_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> ReaderT * (p, p', IORef TFGen) IO b Source #
Warning: TODO: currently deterministic and no randomness on tie breaking. Can be improved by using minBound instead of Maybe
Reports the agent in the agentset that has the highest value for the given reporter. If there is a tie this command reports one random agent with the highest value. If you want all such agents, use with-max instead. max_one_of :: (Agent b, Foldable t, Ord (Many b b1)) => t b -> C (One b) p IO b1 -> C p p' IO b
Warning: TODO
For a list, reports a copy of list with all instances of item removed.
remove_item :: t Source #
Warning: TODO
For a list, reports a copy of list with the item at the given index removed.
replace_item :: t Source #
Warning: TODO
On a list, replaces an item in that list. index is the index of the item to be replaced, starting with 0.
shuffle :: Eq a => [a] -> C s _s' IO [a] Source #
Warning: TODO: make it tail-recursive, optimize with arrays http://www.haskell.org/haskellwiki/Random_shuffle
Reports a new list containing the same items as the input list, but in randomized order.
sublist :: [a] -> Int -> Int -> [a] Source #
Reports just a section of the given list or string, ranging between the first position (inclusive) and the second position (exclusive). 0-indexed
substring :: [a] -> Int -> Int -> [a] Source #
Reports just a section of the given list or string, ranging between the first position (inclusive) and the second position (exclusive).
n_of :: Int -> Patches -> C s _s' IO Patches Source #
From an agentset, reports an agentset of size size randomly chosen from the input set, with no repeats. From a list, reports a list of size size randomly chosen from the input set, with no repeats. n_of :: Eq a => Int -> [a] -> C s _s' IO [a] n_of n ls | n == 0 = return [] | n < 0 = error "negative index" | otherwise = do o <- one_of ls ns <- n_of (n-1) (delete o ls) return (o:ns)
butfirst :: [a] -> [a] Source #
When used on a list, but-first reports all of the list items of list except the first
foreach :: STMorIO m => [a] -> (a -> C _s _s' m b) -> C _s _s' m () Source #
With a single list, runs the task for each item of list.
map :: (a -> b) -> [a] -> [b] #
map
f xs
is the list obtained by applying f
to each element
of xs
, i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
memberp :: Eq a => a -> [a] -> Bool Source #
For a list, reports true if the given value appears in the given list, otherwise reports false.
position :: (a -> Bool) -> [a] -> Maybe a Source #
Warning: TODO: requires dynamic typing
On a list, reports the first position of item in list, or false if it does not appear.
reduce :: (b -> a -> b) -> b -> [a] -> b Source #
Reduces a list from left to right using the given task, resulting in a single value. (foldl)
remove_duplicates :: (STMorIO m, Eq a) => [a] -> C _s _s' m [a] Source #
Reports a copy of list with all duplicate items removed. The first of each item remains in place.
sentence :: [a] -> [a] -> [a] Source #
Warning: TODO: requires dynamic_typing
Makes a list out of the values.
sort_ :: (STMorIO m, Ord a) => [a] -> C _s _s' m [a] Source #
Reports a sorted list of numbers, strings, or agents.
sort_by :: STMorIO m => (a -> a -> Ordering) -> [a] -> C _s _s' m [a] Source #
Warning: TODO: requires dynamic_typing
If the input is a list, reports a new list containing the same items as the input list, in a sorted order defined by the boolean reporter task.
Reports a list of agents, sorted according to each agent's value for reporter. Ties are broken randomly. sort_on :: Ord a => CSTM a -> [AgentRef] -> CSTM [AgentRef]
max_ :: Ord a => [a] -> a Source #
Reports the maximum number value in the list. It ignores other types of items.
n_values :: (Eq a, STMorIO m, Num a) => a -> (a -> C _s _s' m t) -> C _s _s' m [t] Source #
Reports a list of length size containing values computed by repeatedly running the task.
word :: Show a => [a] -> String Source #
Concatenates the inputs together and reports the result as a string.
Math
xor :: Bool -> Bool -> Bool Source #
Reports true if either boolean1 or boolean2 is true, but not when both are true.
cos_ :: Double -> Double Source #
Reports the cosine of the given angle. Assumes the angle is given in degrees.
sin_ :: Double -> Double Source #
Reports the sine of the given angle. Assumes the angle is given in degrees.
atan_ :: RealFloat r => r -> r -> r Source #
Reports the arc tangent (inverse tangent) of the given number.
int :: (Integral b, RealFrac a) => a -> b Source #
Reports the integer part of number -- any fractional part is discarded.
ln :: Floating a => a -> a Source #
Reports the natural logarithm of number, that is, the logarithm to the base e (2.71828...).
mean :: [Double] -> Double Source #
Reports the statistical mean of the numeric items in the given list.
median :: [Double] -> Double Source #
Reports the statistical median of the numeric items of the given list.
Warning: TODO
Reports the sample variance of a list of numbers. Ignores other types of items.
standard_deviation :: t -> t1 Source #
Warning: TODO
Reports the sample standard deviation of a list of numbers. Ignores other types of items.
subtract_headings :: STMorIO m => Double -> Double -> C _s _s' m Double Source #
Warning: TODO? maybe it is finished
Computes the difference between the given headings, that is, the number of degrees in the smallest angle by which heading2 could be rotated to produce heading1.
floor :: RealFrac a => forall b. Integral b => a -> b #
returns the greatest integer not greater than floor
xx
ceiling :: RealFrac a => forall b. Integral b => a -> b #
returns the least integer not less than ceiling
xx
round :: RealFrac a => forall b. Integral b => a -> b #
returns the nearest integer to round
xx
;
the even integer if x
is equidistant between two integers
Misc
max_pxcor :: STMorIO m => C _s _s' m Int Source #
This reporter gives the maximum x-coordinate for patches, which determines the size of the world.
max_pycor :: STMorIO m => C _s _s' m Int Source #
This reporter gives the maximum y-coordinate for patches, which determines the size of the world.
min_pxcor :: STMorIO m => C _s _s' m Int Source #
This reporter gives the minimum x-coordinate for patches, which determines the size of the world.
min_pycor :: STMorIO m => C _s _s' m Int Source #
This reporter gives the maximum y-coordinate for patches, which determines the size of the world.
world_width :: STMorIO m => C _s _s' m Int Source #
This reporter gives the total width of the NetLogo world.
world_height :: STMorIO m => C _s _s' m Int Source #
This reporter gives the total height of the NetLogo world.
clear_drawing :: C Observer () IO () Source #
Warning: TODO
Clears all lines and stamps drawn by turtles.
clear_output :: C Observer () IO () Source #
Warning: TODO
Clears all text from the model's output area, if it has one. Otherwise does nothing.
clear_turtles :: C Observer () IO () Source #
Kills all turtles. Also resets the who numbering, so the next turtle created will be turtle 0.
clear_patches :: C Observer () IO () Source #
Clears the patches by resetting all patch variables to their default initial values, including setting their color to black.
clear_ticks :: C Observer () IO () Source #
Clears the tick counter. Does not set the counter to zero. After this command runs, the tick counter has no value. Attempting to access or update it is an error until reset-ticks is called.
reset_ticks :: C Observer () IO () Source #
Resets the tick counter to zero, sets up all plots, then updates all plots (so that the initial state of the world is plotted).
tick_advance :: Double -> C Observer () IO () Source #
Warning: TODO: dynamic typing, float
Advances the tick counter by number. The input may be an integer or a floating point number. (Some models divide ticks more finely than by ones.) The input may not be negative.
ticks :: STMorIO m => C _s _s' m Double Source #
Reports the current value of the tick counter. The result is always a number and never negative.
Warning: TODO
Histograms the values in the given list Draws a histogram showing the frequency distribution of the values in the list. The heights of the bars in the histogram represent the numbers of values in each subrange.
report :: STMorIO m => a -> C _s _s' m a Source #
Immediately exits from the current to-report procedure and reports value as the result of that procedure. report and to-report are always used in conjunction with each other. | NB: IN HLogo, It does not exit the procedure, but it will if the report primitive happens to be the last statement called from the procedure
loop :: C _s _s' IO a -> C _s _s' IO () Source #
Warning: TODO: use MaybeT or ErrorT
For an agent, reports the value of the reporter for that agent (turtle or patch). For an agentset, reports a list that contains the value of the reporter for each agent in the agentset (in random order).
Runs the list of commands forever, or until the current procedure exits through use of the stop command or the report command. NB: Report command will not stop it in HLogo, only the stop primitive. This command is only run in IO, bcs the command has been implemented using exceptions and exceptions don't work the same in STM. Also it avoids common over-logging that can happen in STM.
This agent exits immediately from the enclosing to-procedure that was called from ask
, or ask-like construct (e.g. crt, hatch, sprout). Only the current procedure stops, not all execution for the agent. Also can exit from a top-level (observer) procedure.
while :: C _s _s' IO Bool -> C _s _s' IO a -> C _s _s' IO () Source #
Warning: TODO: use MaybeT or ErrorT
If reporter reports false, exit the loop. Otherwise run commands and repeat. This command is only run in IO, bcs the command has been implemented using exceptions and exceptions don't work the same in STM. Also it avoids common over-logging that can happen in STM.
Input/Output
show :: (STMorIO m, Show s, Show a) => a -> C s _s' m () Source #
Prints value in the Command Center, preceded by this agent, and followed by a carriage return.
HLogo-specific: There are no guarantees on which agent will be prioritized to write on the stdout. The only guarantee is that in case of show inside an atomic
transaction, no show
will be repeated if the transaction is retried. Compared to unsafe_show
, the output is not mangled.
print :: (STMorIO m, Show a) => a -> C _s _s' m () Source #
Prints value in the Command Center, followed by a carriage return.
HLogo-specific: There are no guarantees on which agent will be prioritized to write on the stdout. The only guarantee is that in case of print inside an atomic
transaction, no print
will be repeated if the transaction is retried. Compared to unsafe_print
, the output is not mangled.
read_from_string :: Read a => String -> a Source #
Interprets the given string as if it had been typed in the Command Center, and reports the resulting value.
timer :: STMorIO m => C _s _s' m Double Source #
Warning: safe, but some might considered it unsafe with respect to STM, since it may poll the clock multiple times. The IO version of it is totally safe
reset_timer :: STMorIO m => C _s _s' m () Source #
Warning: safe, but some might considered it unsafe with respect to STM, since it may poll the clock multiple times. The IO version of it is totally safe
IO Operations
atomic :: C _s _s' STM a -> C _s _s' IO a Source #
lifting STM to IO, a wrapper to atomically
that optionally (based on a CPP flag) can capture STM statistics
ask :: Agent s => C (One s) p IO _b -> s -> C p p' IO () Source #
The specified agent or agentset runs the given commands.
move_to & Internal (needed for Keyword module)
class Agent s => TurtlePatch s where Source #
Methods
patch_on_ :: STMorIO m => s -> C s _s' m Patch Source #
move_to :: s -> C Turtle _s' STM () Source #
The turtle sets its x and y coordinates to be the same as the given agent's. (If that agent is a patch, the effect is to move the turtle to the center of that patch.)
Instances
class Monad m => STMorIO m where Source #
Tells each patch to give equal shares of (number * 100) percent of the value of patch-variable to its eight neighboring patches. number should be between 0 and 1. Regardless of topology the sum of patch-variable will be conserved across the world. (If a patch has fewer than eight neighbors, each neighbor still gets an eighth share; the patch keeps any leftover shares.) can be done better, in a single sequential atomic diffuse :: CSTM Double -> (Double -> CSTM ()) -> Double -> C Observer () IO () diffuse gettervar settervar perc = ask (do ns <- neighbors cns <- count ns g <- atomic gettervar let pg = g * perc / 8 ask (atomic (do ng <- gettervar settervar (ng + pg))) ns atomic $ settervar (g - (pg * fromIntegral cns)) ) =<< patches
A class to allow certain NetLogo builtin primitives to be used
both atomic
-wrapped as well without atomic, since their semantics are preserved.
Mostly applies to Observer and IO-related commands. Also the implementation takes advantage of the faster readTVarIO
.
The correct lifting (STM or IO) is left to type inference.
Minimal complete definition
readTVarSI, ticks, timer, reset_timer, show, print
Methods
readTVarSI :: TVar a -> C s _s' m a Source #
ticks :: C _s _s' m Double Source #
Reports the current value of the tick counter. The result is always a number and never negative.
timer :: C _s _s' m Double Source #
Warning: safe, but some might considered it unsafe with respect to STM, since it may poll the clock multiple times. The IO version of it is totally safe
reset_timer :: C _s _s' m () Source #
Warning: safe, but some might considered it unsafe with respect to STM, since it may poll the clock multiple times. The IO version of it is totally safe
show :: (Show s, Show a) => a -> C s _s' m () Source #
Prints value in the Command Center, preceded by this agent, and followed by a carriage return.
HLogo-specific: There are no guarantees on which agent will be prioritized to write on the stdout. The only guarantee is that in case of show inside an atomic
transaction, no show
will be repeated if the transaction is retried. Compared to unsafe_show
, the output is not mangled.
print :: Show a => a -> C _s _s' m () Source #
Prints value in the Command Center, followed by a carriage return.
HLogo-specific: There are no guarantees on which agent will be prioritized to write on the stdout. The only guarantee is that in case of print inside an atomic
transaction, no print
will be repeated if the transaction is retried. Compared to unsafe_print
, the output is not mangled.
throw :: Exception e => e -> a #
Throw an exception. Exceptions may be thrown from purely
functional code, but may only be caught within the IO
monad.
catch :: Exception e => C _s _s' STM a -> (e -> C _s _s' STM a) -> C _s _s' STM a Source #
Catches an Exception in STM monad
catchIO :: Exception e => C _s _s' IO a -> (e -> C _s _s' IO a) -> C _s _s' IO a Source #
Catches an Exception in IO monad
Evaluate the argument to weak head normal form.
evaluate
is typically used to uncover any exceptions that a lazy value
may contain, and possibly handle them.
evaluate
only evaluates to weak head normal form. If deeper
evaluation is needed, the force
function from Control.DeepSeq
may be handy:
evaluate $ force x
There is a subtle difference between
and evaluate
x
,
analogous to the difference between return
$!
xthrowIO
and throw
. If the lazy
value x
throws an exception,
will fail to return an
return
$!
xIO
action and will throw an exception instead.
, on the
other hand, always produces an evaluate
xIO
action; that action will throw an
exception upon execution iff x
throws an exception upon evaluation.
The practical implication of this difference is that due to the imprecise exceptions semantics,
(return $! error "foo") >> error "bar"
may throw either "foo"
or "bar"
, depending on the optimizations
performed by the compiler. On the other hand,
evaluate (error "foo") >> error "bar"
is guaranteed to throw "foo"
.
The rule of thumb is to use evaluate
to force or handle exceptions in
lazy values. If, on the other hand, you are forcing a lazy value for
efficiency reasons only and do not care about exceptions, you may
use
.return
$!
x
The type class
class (Typeable * e, Show e) => Exception e #
Any type that you wish to throw or catch as an exception must be an
instance of the Exception
class. The simplest case is a new exception
type directly below the root:
data MyException = ThisException | ThatException deriving (Show, Typeable) instance Exception MyException
The default method definitions in the Exception
class do what we need
in this case. You can now throw and catch ThisException
and
ThatException
as exceptions:
*Main> throw ThisException `catch` \e -> putStrLn ("Caught " ++ show (e :: MyException)) Caught ThisException
In more complicated examples, you may wish to define a whole hierarchy of exceptions:
--------------------------------------------------------------------- -- Make the root exception type for all the exceptions in a compiler data SomeCompilerException = forall e . Exception e => SomeCompilerException e deriving Typeable instance Show SomeCompilerException where show (SomeCompilerException e) = show e instance Exception SomeCompilerException compilerExceptionToException :: Exception e => e -> SomeException compilerExceptionToException = toException . SomeCompilerException compilerExceptionFromException :: Exception e => SomeException -> Maybe e compilerExceptionFromException x = do SomeCompilerException a <- fromException x cast a --------------------------------------------------------------------- -- Make a subhierarchy for exceptions in the frontend of the compiler data SomeFrontendException = forall e . Exception e => SomeFrontendException e deriving Typeable instance Show SomeFrontendException where show (SomeFrontendException e) = show e instance Exception SomeFrontendException where toException = compilerExceptionToException fromException = compilerExceptionFromException frontendExceptionToException :: Exception e => e -> SomeException frontendExceptionToException = toException . SomeFrontendException frontendExceptionFromException :: Exception e => SomeException -> Maybe e frontendExceptionFromException x = do SomeFrontendException a <- fromException x cast a --------------------------------------------------------------------- -- Make an exception type for a particular frontend compiler exception data MismatchedParentheses = MismatchedParentheses deriving (Typeable, Show) instance Exception MismatchedParentheses where toException = frontendExceptionToException fromException = frontendExceptionFromException
We can now catch a MismatchedParentheses
exception as
MismatchedParentheses
, SomeFrontendException
or
SomeCompilerException
, but not other types, e.g. IOException
:
*Main> throw MismatchedParenthesescatch
e -> putStrLn ("Caught " ++ show (e :: MismatchedParentheses)) Caught MismatchedParentheses *Main> throw MismatchedParenthesescatch
e -> putStrLn ("Caught " ++ show (e :: SomeFrontendException)) Caught MismatchedParentheses *Main> throw MismatchedParenthesescatch
e -> putStrLn ("Caught " ++ show (e :: SomeCompilerException)) Caught MismatchedParentheses *Main> throw MismatchedParenthesescatch
e -> putStrLn ("Caught " ++ show (e :: IOException)) *** Exception: MismatchedParentheses
Instances
If the first argument evaluates to True
, then the result is the
second argument. Otherwise an AssertionFailed
exception is raised,
containing a String
with the source file and line number of the
call to assert
.
Assertions can normally be turned on or off with a compiler flag
(for GHC, assertions are normally on unless optimisation is turned on
with -O
or the -fignore-asserts
option is given). When assertions are turned off, the first
argument to assert
is ignored, and the second argument is
returned as the result.
Built-in exceptions imported from Haskell base
data SomeException :: * #
The SomeException
type is the root of the exception type hierarchy.
When an exception of type e
is thrown, behind the scenes it is
encapsulated in a SomeException
.
Instances
data IOException :: * #
Exceptions that occur in the IO
monad.
An IOException
records a more specific error type, a descriptive
string and maybe the handle that was used when the error was
flagged.
Instances
data ArithException :: * #
Arithmetic exceptions.
Constructors
Overflow | |
Underflow | |
LossOfPrecision | |
DivideByZero | |
Denormal | |
RatioZeroDenominator | Since: 4.6.0.0 |
newtype AssertionFailed :: * #
Constructors
AssertionFailed String |
Instances
Show AssertionFailed | |
Exception AssertionFailed | |
Wrapped AssertionFailed | |
(~) * t AssertionFailed => Rewrapped AssertionFailed t | |
type Unwrapped AssertionFailed | |
data AsyncException :: * #
Asynchronous exceptions.
Constructors
StackOverflow | The current thread's stack exceeded its limit. Since an exception has been raised, the thread's stack will certainly be below its limit again, but the programmer should take remedial action immediately. |
HeapOverflow | The program's heap is reaching its limit, and the program should take action to reduce the amount of live data it has. Notes:
|
ThreadKilled | This exception is raised by another thread
calling |
UserInterrupt | This exception is raised by default in the main thread of the program when the user requests to terminate the program via the usual mechanism(s) (e.g. Control-C in the console). |
data NestedAtomically :: * #
Thrown when the program attempts to call atomically
, from the stm
package, inside another call to atomically
.
Constructors
NestedAtomically |
Instances
data BlockedIndefinitelyOnSTM :: * #
The thread is waiting to retry an STM transaction, but there are no
other references to any TVar
s involved, so it can't ever continue.
Constructors
BlockedIndefinitelyOnSTM |
There are no runnable threads, so the program is deadlocked.
The Deadlock
exception is raised in the main thread only.
Constructors
Deadlock |
Constructors
ErrorCallWithLocation String String |
Exceptions specific to HLogo
data TypeException Source #
Thrown when a primitive procedure expected a different *this* context (i.e. the callee inside the context monad transformer).
Used as ContextException ExpectedCalleeAsString GotInsteadAgentRef
A type error thrown when a procedure expected a different type of agent argument.
Normally we use the static typing of Haskell, except for AgentRef
s, which are checked dynamically on run-time
Used as TypeException ExpectedTypeAsString GotInsteadAgentRef
A type error thrown when a procedure expected a different type of agent argument.
Normally we use the static typing of Haskell, except for AgentRef
s, which are checked dynamically on run-time
Used as TypeException ExpectedTypeAsString GotInsteadAgentRef
Constructors
TypeException String |
Instances
data StopException Source #
The error thrown by the stop
primitive. It is a trick and should be catched in an upper caller primitive.
Constructors
StopException |
Instances
The typeclasses (interfaces) of each participant in a simulation
An agent (subtype of Player
) can be ask
ed to do some work or return a value of_
his.
Agents (of the same type, since we are typed) can be checked for Eq
uality (= in NetLogo, == in HLogo), Ord
ered (>,,=...)
and Show
ed their identiy to screen.
Methods
ask :: C (One s) p IO _b -> s -> C p p' IO () Source #
The specified agent or agentset runs the given commands.
ask_async :: C (One s) p IO _b -> s -> C p p' IO () Source #
A variation of ask where the caller does not wait for the callee-agents to finish
NB: the caller may run in parallel with the callees, and this may lead to race-condition issues
e.g. Observer's tick
may not be seen by all agents
of_ :: C (One s) p IO b -> s -> C p p' IO (Many s b) Source #
Minimal complete definition
class Agent s => TurtleLink s where Source #
A subtype of Agent is a TurtleLink, i.e. either a Turtle or a Link.
This class is needed since turtle/links have some common attribute names and share certain primitives.
type C s s' m a = ReaderT (s, s', IORef TFGen) m a Source #
Any HLogo program executes either inside STM
or IO
side-effectful monad.
We wrap these monads around a context mainly for two reasons:
1) to have at runtime the dynamic information of the this-agent (self
) and its parent caller (myself
).
2) to restrict the types of the NetLogo primitives to specifc contexts, thus turning the NetLogo dynamic language to a statically type-checked eDSL.
The Observer datastructure
The observer is an empty datatype. It cannot be constructed (inhabited by any value),
and is only there to restrict the 'self'&'myself' reader C
ontext.
The agents' datastructures holding the attributes of the agents
The Turtle
datatype is a record with each field being a transactional variable (TVar) holding
an attribute value of Turtle
, except the who_
attribute which is fixed upon turtle creation.
Constructors
MkTurtle | |
Fields
|
The Patch
datatype follows a similar philosophy with the Turtle
(ADT).
Each field is a transactional variable (TVar) storing an attribute value of Patch
, except
the pxcor_
and pycor_
attributes which are fixed upon patch creation.
Constructors
MkPatch | |
The Link
datatype follows a similar philosophy with the Turtle
(ADT).
Each field is a transactional variable (TVar) storing an attribute value of Link
, except
the end1_
, end2_
, directed
attributes which are fixed upon patch creation.
Constructors
MkLink | |
Fields
|
Holds the information for the turtle, if it's pen is up or down.
Compared to NetLogo's string representation, this is an Algebraic Data Type (ADT). NetLogo does not even raise a _runtime error_ for if their pen-mode string is ill-formatted, and assumes that any ill-formatted string, e.g. "downn", UP is the same as "down"
Holds the information for the link, if it ties the two turtles together, i.e. one moving will result with the other moving too.
Compared to NetLogo's string representation, this is an Algebraic Data Type (ADT). NetLogo does not even raise a _runtime error_ for ill-formatted tie-mode strings.
The containers storing multiple agents
module Prelude
forever :: Applicative f => f a -> f b #
repeats the action infinitely.forever
act
when :: Applicative f => Bool -> f () -> f () #
Conditional execution of Applicative
expressions. For example,
when debug (putStrLn "Debugging")
will output the string Debugging
if the Boolean value debug
is True
, and otherwise do nothing.