Merge remote-tracking branch 'origin/master' into signed-arith

This commit is contained in:
Robert Dockins 2017-08-03 13:28:51 -07:00
commit b1a821217e
3 changed files with 6 additions and 6 deletions

View File

@ -244,7 +244,7 @@ badDef x = x.f
The components of a tuple or a record may also be accessed using pattern
matching. Patterns for tuples and records mirror the syntax for
constructing values: tuple patterns use parenthesis, while record
constructing values: tuple patterns use parentheses, while record
patterns use braces. Examples:
\begin{verbatim}

View File

@ -235,7 +235,7 @@ record. For example:
The components of a tuple or a record may also be accessed using
pattern matching. Patterns for tuples and records mirror the syntax
for constructing values: tuple patterns use parenthesis, while record
for constructing values: tuple patterns use parentheses, while record
patterns use braces. Examples:
getFst (x,_) = x

View File

@ -218,10 +218,10 @@ evalDeclGroup env dg = do
--
-- In order to faithfully evaluate the nonstrict semantics of Cryptol, we have to take some
-- care in this process. In particular, we need to ensure that every recursive definition
-- binding is indistinguishable from it's eta-expanded form. The straightforward solution
-- binding is indistinguishable from its eta-expanded form. The straightforward solution
-- to this is to force an eta-expansion procedure on all recursive definitions.
-- However, for the so-called 'Value' types we can instead optimisticly use the 'delayFill'
-- operation and only fall back on full eta expansion if the thunk is double-forced.
-- However, for the so-called 'Value' types we can instead optimistically use the 'delayFill'
-- operation and only fall back on full eta-expansion if the thunk is double-forced.
fillHole :: BitWord b w
=> GenEvalEnv b w
-> (Name, Schema, Eval (GenValue b w), Eval (GenValue b w) -> Eval ())
@ -264,7 +264,7 @@ etaWord n x = do
VBit <$> indexWordValue w' (toInteger i)
-- | Given a simulator value and it's type, fully eta-expand the value. This
-- | Given a simulator value and its type, fully eta-expand the value. This
-- is a type-directed pass that always produces a canonical value of the
-- expected shape. Eta expansion of values is sometimes necessary to ensure
-- the correct evaluation semantics of recursive definitions. Otherwise,