Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
ba7ffdf1
Commit
ba7ffdf1
authored
Apr 02, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
$bits conversion handles types with more than 1 dimension
parent
86195d9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
src/Convert/Bits.hs
+9
-2
No files found.
src/Convert/Bits.hs
View file @
ba7ffdf1
...
@@ -18,6 +18,13 @@ convert =
...
@@ -18,6 +18,13 @@ convert =
convertExpr
convertExpr
convertExpr
::
Expr
->
Expr
convertExpr
::
Expr
->
Expr
convertExpr
(
Bits
(
Left
(
IntegerVector
_
_
[
r
])))
=
rangeSize
r
convertExpr
(
Bits
(
Left
(
IntegerVector
_
_
rs
)))
=
size
rs
convertExpr
(
Bits
(
Left
(
Implicit
_
[
r
])))
=
rangeSize
r
convertExpr
(
Bits
(
Left
(
Implicit
_
rs
)))
=
size
rs
convertExpr
other
=
other
convertExpr
other
=
other
size
::
[
Range
]
->
Expr
size
ranges
=
simplify
$
foldl
(
BinOp
Mul
)
(
Number
"1"
)
$
map
rangeSize
$
ranges
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment