Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
9a4bfc39
Commit
9a4bfc39
authored
8 years ago
by
Mikhail Glushenkov
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #3537 from ezyang/pr/graph-fixes
Import hygiene and miscellaneous fixes.
parents
7d192e5c
8de1f627
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Cabal/Distribution/Compat/Graph.hs
+5
-5
5 additions, 5 deletions
Cabal/Distribution/Compat/Graph.hs
with
5 additions
and
5 deletions
Cabal/Distribution/Compat/Graph.hs
+
5
−
5
View file @
9a4bfc39
...
...
@@ -87,10 +87,10 @@ import qualified Data.Map as Map
import
qualified
Data.Array
as
Array
import
Data.Array
((
!
))
import
qualified
Data.Tree
as
Tree
import
Data.Either
import
Data.Typeable
import
Data.Either
(
partitionEithers
)
import
Data.Typeable
(
Typeable
)
import
qualified
Data.Foldable
as
Foldable
import
Control.DeepSeq
import
Control.DeepSeq
(
NFData
(
..
))
import
Distribution.Compat.Binary
(
Binary
(
..
))
-- | A graph of nodes @a@. The nodes are expected to have instance
...
...
@@ -186,7 +186,7 @@ instance Ord k => IsNode (Node k a) where
nodeKey
(
N
_
k
_
)
=
k
nodeNeighbors
(
N
_
_
ks
)
=
ks
-- TODO: Maybe introduce a typeclass for items w
it
h just
-- TODO: Maybe introduce a typeclass for items w
hic
h just
-- keys (so, Key associated type, and nodeKey method). But
-- I didn't need it here, so I didn't introduce it.
...
...
@@ -236,7 +236,7 @@ unionRight g g' = fromMap (Map.union (toMap g') (toMap g))
-- | /O(V + V')/. Left-biased union, preferring entries from
-- the first map when conflicts occur.
unionLeft
::
IsNode
a
=>
Graph
a
->
Graph
a
->
Graph
a
unionLeft
g
g'
=
fromMap
(
Map
.
union
(
toMap
g
)
(
toMap
g'
))
unionLeft
=
flip
unionRight
-- Graph-like operations
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment