GraphLogic.hs revision e2a334fa04447bab0555008d5f785670d50e2406
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
{-# OPTIONS -cpp #-}
{- |
Module : $Header$
Description : Logic for manipulating the graph in the Central GUI
Copyright : (c) Jorina Freya Gerken, Till Mossakowski, Uni Bremen 2002-2006
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : till@informatik.uni-bremen.de
Stability : provisional
Portability : non-portable (imports Logic)
This module provides functions for all the menus in the Hets GUI.
These are then assembled to the GUI in "GUI.GraphMenu".
-}
module GUI.GraphLogic
( undo
, performProofAction
, openProofStatus
, saveProofStatus
, nodeErr
, proofMenu
, showReferencedLibrary
, getTheoryOfNode
, translateTheoryOfNode
, displaySubsortGraph
, displayConceptGraph
, lookupTheoryOfNode
, showProofStatusOfNode
, proveAtNode
, showNodeInfo
, showEdgeInfo
, checkconservativityOfEdge
, convert
, hideNodes
, hideNewProvedEdges
, hideShowNames
, showNodes
, translateGraph
, showLibGraph
, runAndLock
, saveUDGraph
, focusNode
, applyChanges
) where
import Logic.Logic(conservativityCheck,map_sen, comp)
import Logic.Coerce(coerceSign, coerceMorphism)
import Logic.Grothendieck
import Logic.Comorphism
import Logic.Prover
import Comorphisms.LogicGraph(logicGraph)
import Static.GTheory
import Static.DevGraph
import Static.PrintDevGraph
import Static.DGTranslation(libEnv_translation, getDGLogic)
import Proofs.EdgeUtils
import Proofs.InferBasic(basicInferenceNode)
import Proofs.StatusUtils(lookupHistory, removeContraryChanges)
import Proofs.TheoremHideShift
import GUI.Taxonomy (displayConceptGraph,displaySubsortGraph)
import GUI.GraphTypes
import qualified GUI.GraphAbstraction as GA
import GUI.Utils
#ifdef UNIVERSION2
import Graphs.GraphConfigure
import Reactor.InfoBus(encapsulateWaitTermAct)
import HTk.Toolkit.DialogWin (useHTk)
#else
import GraphConfigure
import InfoBus(encapsulateWaitTermAct)
import DialogWin (useHTk)
#endif
import qualified GUI.HTkUtils as HTk
import Common.DocUtils (showDoc)
import Common.AS_Annotation (isAxiom)
import Common.Consistency
import Common.ExtSign
import Common.LibName
import Common.Result as Res
import qualified Common.OrderedMap as OMap
import qualified Common.Lib.SizedList as SizedList
import Driver.Options
import Driver.WriteLibDefn(writeShATermFile)
import Driver.ReadFn(libNameToFile, readVerbose)
import Driver.AnaLib(anaLib)
import Data.IORef
import Data.Char(toLower)
import Data.List(partition, delete)
import Data.Maybe
import Data.Graph.Inductive.Graph (Node, LEdge, LNode)
import qualified Data.Map as Map
import Control.Monad
import Control.Concurrent (forkIO)
import Control.Concurrent.MVar
import Interfaces.History
import Interfaces.DataTypes
-- | Locks the global lock and runs function
runAndLock :: GInfo -> IO () -> IO ()
runAndLock (GInfo { functionLock = lock
, gi_GraphInfo = actGraphInfo
}) function = do
locked <- tryPutMVar lock ()
case locked of
True -> do
GA.deactivateGraphWindow actGraphInfo
function
takeMVar lock
GA.redisplay actGraphInfo
GA.layoutImproveAll actGraphInfo
GA.activateGraphWindow actGraphInfo
False ->
GA.showTemporaryMessage actGraphInfo
"an other function is still working ... please wait ..."
-- | Undo one step of the History
undo :: GInfo -> Bool -> IO ()
undo gInfo@(GInfo { gi_GraphInfo = actGraphInfo }) isUndo = do
hhn <- GA.hasHiddenNodes actGraphInfo
intSt <- readIORef $ intState gInfo
nwSt <- if isUndo then undoOneStep intSt else redoOneStep intSt
writeIORef (intState gInfo) nwSt
if hhn then hideNodes gInfo else return ()
GA.redisplay actGraphInfo
{-
-- | reloads the Library of the DevGraph
reload :: GInfo -> IO()
reload gInfo@(GInfo { gi_hetcatsOpts = opts
, gi_GraphInfo = actGraphInfo
}) = do
lockGlobal gInfo
oldst <- readIORef $ intState gInfo
case i_state oldst of
Nothing -> do
unlockGlobal gInfo
return ()
Just ist -> do
let oldle = i_libEnv ist
ln = i_ln ist
libdeps = dependentLibs ln oldle
reloaded <- reloadLibs gInfo opts libdeps False
unlockGlobal gInfo
GA.showTemporaryMessage actGraphInfo $
if reloaded then "Reload complete!"
else "Reload not needed!"
-- | Reloads a library
reloadLib :: IORef IntState -> HetcatsOpts -> LIB_NAME -> FilePath -> IO ()
reloadLib iorst opts ln file = do
ost <- readIORef iorst
case i_state ost of
Nothing -> return ()
Just ist -> do
let le = i_libEnv ist
mFunc <- case openlock $ lookupDGraph ln le of
Just lock -> tryTakeMVar lock
Nothing -> return Nothing
let
le' = Map.delete ln le
mres <- anaLibExt opts file le'
case mres of
Just (_, newle) -> do
nle <- case mFunc of
Just func -> do
lock <- case openlock $ lookupDGraph ln newle of
Just lock -> return lock
Nothing -> newEmptyMVar
putMVar lock func
return $ Map.insert ln (lookupDGraph ln newle)
{openlock = Just lock} newle
Nothing -> return newle
let nwst = ost { i_state = Just ist { i_libEnv = nle } }
writeIORef iorst nwst
Nothing ->
errorDialog "Error" $ "Error when reloading file " ++ show file
-- | Reloads libraries if nessesary
reloadLibs :: GInfo -> HetcatsOpts -> [LIB_NAME] -> Bool -> IO Bool
reloadLibs _ _ [] reloaded = return reloaded
reloadLibs gInfo opts (ln:lns) reloaded = do
mfile <- existsAnSource opts {intype = GuessIn}
$ rmSuffix $ libNameToFile opts ln
case mfile of
Nothing -> do
errorDialog "Error" $ "File not found: " ++ libNameToFile opts ln
return False
Just file -> do
oldTime <- do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return $ TOD 0 0
Just ist -> do
let newln:_ = filter (ln ==) $ Map.keys $ i_libEnv ist
return $ getModTime $ getLIB_ID newln
newTime <- getModificationTime file
case reloaded || oldTime < newTime of
False -> reloadLibs gInfo opts lns False
True -> do
reloadLib (intState gInfo) opts ln file
oGraphs <- readIORef $ openGraphs gInfo
case Map.lookup ln oGraphs of
Just gInfo' -> remakeGraph gInfo'
Nothing -> return ()
reloadLibs gInfo opts lns True
-- | Deletes the old edges and nodes of the Graph and makes new ones
remakeGraph :: GInfo -> IO ()
remakeGraph gInfo@(GInfo { gi_GraphInfo = actGraphInfo
}) = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let le = i_libEnv ist
ln = i_ln ist
dgraph = lookupDGraph ln le
showNodes gInfo
GA.clear actGraphInfo
convert actGraphInfo dgraph
hideNodes gInfo
-}
-- | Toggles to display internal node names
hideShowNames :: GInfo -> Bool -> IO ()
hideShowNames (GInfo { internalNamesIORef = showInternalNames
}) toggle = do
(intrn::InternalNames) <- readIORef showInternalNames
let showThem = if toggle then not $ showNames intrn else showNames intrn
showItrn s = if showThem then s else ""
mapM_ (\(s,upd) -> upd (\_ -> showItrn s)) $ updater intrn
writeIORef showInternalNames $ intrn {showNames = showThem}
-- | shows all hidden nodes and edges
showNodes :: GInfo -> IO ()
showNodes gInfo@(GInfo { gi_GraphInfo = actGraphInfo
}) = do
hhn <- GA.hasHiddenNodes actGraphInfo
case hhn of
True -> do
GA.showTemporaryMessage actGraphInfo "Revealing hidden nodes ..."
GA.showAll actGraphInfo
hideShowNames gInfo False
False ->
GA.showTemporaryMessage actGraphInfo "No hidden nodes found ..."
-- | hides all unnamed internal nodes that are proven
hideNodes :: GInfo -> IO ()
hideNodes gInfo@(GInfo { gi_GraphInfo = actGraphInfo }) = do
hhn <- GA.hasHiddenNodes actGraphInfo
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> if hhn then
GA.showTemporaryMessage actGraphInfo "Nodes already hidden ..."
else do
GA.showTemporaryMessage actGraphInfo "Hiding unnamed nodes..."
let le = i_libEnv ist
ln = i_ln ist
dg = lookupDGraph ln le
nodes = selectNodesByType dg [DGNodeType
{nonRefType = NonRefType
{isProvenCons = True
, isInternalSpec = True}
, isLocallyEmpty = True}]
edges = getCompressedEdges dg nodes
GA.hideNodes actGraphInfo nodes edges
-- | hides all proven edges created not initialy
hideNewProvedEdges :: GInfo -> IO ()
hideNewProvedEdges gInfo@(GInfo { gi_GraphInfo = actGraphInfo }) = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ph = SizedList.toList $ proofHistory
$ lookupDGraph (i_ln ist) $ i_libEnv ist
edges = foldl (\ e c -> case c of
InsertEdge (_, _, lbl) -> (dgl_id lbl):e
DeleteEdge (_, _, lbl) -> delete (dgl_id lbl) e
_ -> e
) [] $ flattenHistory ph []
mapM_ (GA.hideEdge actGraphInfo) edges
GA.redisplay actGraphInfo
-- | generates from list of HistElem one list of DGChanges
flattenHistory :: [HistElem] -> [DGChange] -> [DGChange]
flattenHistory [] cs = cs
flattenHistory ((HistElem c):r) cs = flattenHistory r $ c:cs
flattenHistory ((HistGroup _ ph):r) cs =
flattenHistory r $ flattenHistory (SizedList.toList ph) cs
-- | selects all nodes of a type with outgoing edges
selectNodesByType :: DGraph -> [DGNodeType] -> [Node]
selectNodesByType dg types =
filter (\ n -> outDG dg n /= []) $ map fst
$ filter (\ (_, n) -> elem (getRealDGNodeType n) types) $ labNodesDG dg
-- | compresses a list of types to the highest one
compressTypes :: Bool -> [DGEdgeType] -> (DGEdgeType, Bool)
compressTypes _ [] = error "compressTypes: wrong usage"
compressTypes b (t:[]) = (t,b)
compressTypes b (t1:t2:r) = if t1 == t2 then compressTypes b (t1:r) else
if t1 > t2 then compressTypes False (t1:r) else compressTypes False (t2:r)
-- | returns a list of compressed edges
getCompressedEdges :: DGraph -> [Node] -> [(Node,Node,(DGEdgeType, Bool))]
getCompressedEdges dg hidden = filterDuplicates $ getShortPaths
$ concatMap (\ e@(_,t,_) -> map (e:) $ getPaths dg t hidden []) inEdges
where
inEdges = filter (\ (_,t,_) -> elem t hidden)
$ concatMap (outDG dg)
$ foldr (\ n i -> if elem n hidden
|| elem n i then i else n:i) []
$ map (\ (s,_,_) -> s) $ concatMap (innDG dg) hidden
-- | filter duplicate paths
filterDuplicates :: [(Node,Node,(DGEdgeType, Bool))]
-> [(Node,Node,(DGEdgeType, Bool))]
filterDuplicates [] = []
filterDuplicates ((s, t, (et,b)) : r) = edge : filterDuplicates others
where
(same,others) = partition (\ (s',t',_) -> s == s' && t == t') r
b' = and $ b : map (\ (_,_,(_,b'')) -> b'') same
edge = (s,t,compressTypes b' $ et : map (\ (_,_,(et',_)) -> et') same)
-- | returns the pahts of a given node through hidden nodes
getPaths :: DGraph -> Node -> [Node] -> [Node] -> [[LEdge DGLinkLab]]
getPaths dg node hidden seen' = case elem node hidden of
True -> case edges /= [] of
True -> concatMap (\ e@(_,t,_) -> map (e:) $ getPaths dg t hidden seen)
edges
False -> []
False -> [[]]
where
seen = node:seen'
edges = filter (\ (_,t,_) -> notElem t seen) $ outDG dg node
-- | returns source and target node of a path with the compressed type
getShortPaths :: [[LEdge DGLinkLab]]
-> [(Node,Node,(DGEdgeType,Bool))]
getShortPaths [] = []
getShortPaths (p : r) =
(s, t, compressTypes True $ map (\ (_,_,e) -> getRealDGLinkType e) p)
: getShortPaths r
where
(s,_,_) = head p
(_,t,_) = last p
-- | Let the user select a Node to focus
focusNode :: GInfo -> IO ()
focusNode gInfo@(GInfo { gi_GraphInfo = grInfo }) = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let le = i_libEnv ist
ln = i_ln ist
idsnodes <- filterM (fmap not . GA.isHiddenNode grInfo . fst)
$ labNodesDG $ lookupDGraph ln le
selection <- listBox "Select a node to focus"
$ map (\ (n, l) -> shows n " " ++ getDGNodeName l) idsnodes
case selection of
Just idx -> GA.focusNode grInfo $ fst $ idsnodes !! idx
Nothing -> return ()
translateGraph :: GInfo -> ConvFunc -> LibFunc -> IO ()
translateGraph gInfo@(GInfo { gi_hetcatsOpts = opts
}) convGraph showLib = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let le = i_libEnv ist
ln = i_ln ist
openTranslateGraph le ln opts (getDGLogic le) convGraph showLib
showLibGraph :: GInfo -> LibFunc -> IO ()
showLibGraph gInfo showLib = do
showLib gInfo
return ()
{- | it tries to perform the given action to the given graph.
If part of the given graph is not hidden, then the action can
be performed directly; otherwise the graph will be shown completely
firstly, and then the action will be performed, and after that the graph
will be hidden again.
-}
performProofAction :: GInfo -> IO () -> IO ()
performProofAction gInfo@(GInfo { gi_GraphInfo = actGraphInfo
}) proofAction = do
let actionWithMessage = do
GA.showTemporaryMessage actGraphInfo
"Applying development graph calculus proof rule..."
proofAction
hhn <- GA.hasHiddenNodes actGraphInfo
case hhn of
True -> do
showNodes gInfo
actionWithMessage
hideNodes gInfo
False -> actionWithMessage
GA.showTemporaryMessage actGraphInfo
"Development graph calculus proof rule finished."
saveProofStatus :: GInfo -> FilePath -> IO ()
saveProofStatus gInfo@(GInfo { gi_hetcatsOpts = opts
}) file = encapsulateWaitTermAct $ do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let proofStatus = i_libEnv ist
ln = i_ln ist
writeShATermFile file (ln, lookupHistory ln proofStatus)
putIfVerbose opts 2 $ "Wrote " ++ file
-- | implementation of open menu, read in a proof status
openProofStatus :: GInfo -> FilePath -> ConvFunc -> LibFunc
-> IO ()
openProofStatus gInfo@(GInfo { gi_hetcatsOpts = opts
}) file convGraph showLib = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
mh <- readVerbose opts ln file
case mh of
Nothing -> errorDialog "Error" $ "Could not read proof status from file '"
++ file ++ "'"
Just h -> do
let libfile = libNameToFile opts ln
m <- anaLib opts { outtypes = [] } libfile
case m of
Nothing -> errorDialog "Error"
$ "Could not read original development graph from '"
++ libfile ++ "'"
Just (_, libEnv) -> case Map.lookup ln libEnv of
Nothing -> errorDialog "Error" $ "Could not get original"
++ "development graph for '" ++ showDoc ln "'"
Just dg -> do
lockGlobal gInfo
let oldEnv = i_libEnv ist
proofStatus = Map.insert ln
(applyProofHistory h dg) oldEnv
nwst = ost { i_state = Just ist {
i_libEnv = proofStatus } }
writeIORef (intState gInfo) nwst
unlockGlobal gInfo
gInfo' <- copyGInfo gInfo ln
convGraph gInfo' "Proof Status " showLib
let actGraphInfo = gi_GraphInfo gInfo
GA.deactivateGraphWindow actGraphInfo
GA.redisplay actGraphInfo
GA.layoutImproveAll actGraphInfo
GA.activateGraphWindow actGraphInfo
-- | apply a rule of the development graph calculus
proofMenu :: GInfo
-> String
-> (LibEnv -> IO (Res.Result LibEnv))
-> IO ()
proofMenu gInfo@(GInfo { gi_GraphInfo = actGraphInfo
, gi_hetcatsOpts = hOpts
, proofGUIMVar = guiMVar
}) str proofFun = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
filled <- tryPutMVar guiMVar Nothing
if not filled
then readMVar guiMVar >>=
maybe (putIfVerbose hOpts 0 "proofMenu: ignored Nothing")
(\ w -> do
putIfVerbose hOpts 4 $
"proofMenu: Ignored Proof command; " ++
"maybe a proof window is still open?"
else do
lockGlobal gInfo
let proofStatus = i_libEnv ist
putIfVerbose hOpts 4 "Proof started via \"Proofs\" menu"
Res.Result ds res <- proofFun proofStatus
putIfVerbose hOpts 4 "Analyzing result of proof"
case res of
Nothing -> do
unlockGlobal gInfo
printDiags 2 ds
Just newProofStatus -> do
let newGr = lookupDGraph ln newProofStatus
history = snd $ splitHistory (lookupDGraph ln proofStatus) newGr
doDump hOpts "PrintHistory" $ do
putStrLn "History"
print $ prettyHistory history
let lln = map (\x-> DgCommandChange x) $ calcGlobalHistory
proofStatus newProofStatus
nmStr = strToCmd str
nst = add2history nmStr ost lln
-- nst = foldl (add2history nmStr) ost lln
-- (calcGlobalHistory proofStatus newProofStatus : guHist, grHist)
applyChanges actGraphInfo $ reverse
$ flatHistory history
let nwst = nst { i_state = Just ist { i_libEnv=newProofStatus}}
writeIORef (intState gInfo) nwst
unlockGlobal gInfo
hideShowNames gInfo False
mGUIMVar <- tryTakeMVar guiMVar
maybe (fail "should be filled with Nothing after proof attempt")
(const $ return ())
mGUIMVar
calcGlobalHistory :: LibEnv -> LibEnv -> [LIB_NAME]
calcGlobalHistory old new = let
length' ln = SizedList.size . proofHistory . lookupDGraph ln
changes = filter (\ ln -> length' ln old < length' ln new) $ Map.keys old
in concatMap (\ ln -> replicate (length' ln new - length' ln old) ln) changes
nodeErr :: Int -> IO ()
nodeErr descr = error $ "node with descriptor " ++ show descr
++ " has no corresponding node in the development graph"
showNodeInfo :: Int -> DGraph -> IO ()
showNodeInfo descr dgraph = do
let dgnode = labDG dgraph descr
title = (if isDGRef dgnode then ("reference " ++) else
if isInternalNode dgnode then ("internal " ++) else id)
"node " ++ getDGNodeName dgnode ++ " " ++ show descr
createTextDisplay title (title ++ "\n" ++ showDoc dgnode "")
{- |
fetches the theory from a node inside the IO Monad
(added by KL based on code in getTheoryOfNode) -}
lookupTheoryOfNode :: LibEnv -> LIB_NAME -> Int
-> IO (Res.Result (LibEnv, Node, G_theory))
lookupTheoryOfNode libEnv ln descr =
return $ do
(libEnv', gth) <- computeTheory True libEnv ln descr
return (libEnv', descr, gth)
showDiagMessAux :: Int -> [Diagnosis] -> IO ()
showDiagMessAux v ds = let es = Res.filterDiags v ds in
if null es then return () else
(if hasErrors es then errorDialog "Error" else infoDialog "Info") $ unlines
$ map show es
showDiagMess :: HetcatsOpts -> [Diagnosis] -> IO ()
showDiagMess = showDiagMessAux . verbose
{- | outputs the theory of a node in a window;
used by the node menu defined in initializeGraph-}
getTheoryOfNode :: GInfo -> Int -> DGraph -> IO ()
getTheoryOfNode gInfo@(GInfo { gi_GraphInfo = actGraphInfo
}) descr dgraph = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let le = i_libEnv ist
ln = i_ln ist
r <- lookupTheoryOfNode le ln descr
case r of
Res.Result ds res -> do
showDiagMess (gi_hetcatsOpts gInfo) ds
case res of
(Just (le', n, gth)) -> do
lockGlobal gInfo
displayTheoryWithWarning "Theory" (getNameOfNode n dgraph)
(addHasInHidingWarning dgraph n) gth
let newGr = lookupDGraph ln le'
history = snd $ splitHistory (lookupDGraph ln le) newGr
applyChanges actGraphInfo $ reverse $ flatHistory history
let nwst = ost { i_state = Just $ist { i_libEnv = le'} }
writeIORef (intState gInfo) nwst
unlockGlobal gInfo
_ -> return ()
{- | translate the theory of a node in a window;
used by the node menu defined in initializeGraph-}
translateTheoryOfNode :: GInfo -> Int -> DGraph -> IO ()
translateTheoryOfNode
gInfo@(GInfo {gi_hetcatsOpts = opts}) node dgraph = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let libEnv = i_libEnv ist
ln = i_ln ist
Res.Result ds mEnv = computeTheory False libEnv ln node
case mEnv of
Just (_, th@(G_theory lid sign _ sens _)) -> do
-- find all comorphism paths starting from lid
let paths = findComorphismPaths logicGraph (sublogicOfTh th)
-- let the user choose one
sel <- listBox "Choose a node logic translation" $ map show paths
case sel of
Nothing -> errorDialog "Error" "no node logic translation chosen"
Just i -> do
Comorphism cid <- return (paths!!i)
-- adjust lid's
let lidS = sourceLogic cid
lidT = targetLogic cid
sign' <- coerceSign lid lidS "" sign
sens' <- coerceThSens lid lidS "" sens
-- translate theory along chosen comorphism
let Result es mTh = wrapMapTheory cid
(plainSign sign', toNamedList sens')
case mTh of
Nothing -> showDiagMess opts es
Just (sign'', sens1) -> displayTheoryWithWarning
"Translated Theory" (getNameOfNode node dgraph)
(addHasInHidingWarning dgraph node)
(G_theory lidT (mkExtSign sign'') startSigId
(toThSens sens1) startThId)
Nothing -> showDiagMess opts ds
-- | Show proof status of a node
showProofStatusOfNode :: GInfo -> Int -> DGraph -> IO ()
showProofStatusOfNode _ descr dgraph = do
let dgnode = labDG dgraph descr
stat = showStatusAux dgnode
title = "Proof status of node "++showName (dgn_name dgnode)
createTextDisplay title stat
showStatusAux :: DGNodeLab -> String
showStatusAux dgnode =
case dgn_theory dgnode of
G_theory _ _ _ sens _ ->
let goals = OMap.filter (not . isAxiom) sens
(proven,open) = OMap.partition isProvenSenStatus goals
consGoal = "\nconservativity of this node"
in "Proven proof goals:\n"
++ showDoc proven ""
++ if not $ hasOpenConsStatus True dgnode
then consGoal
else ""
++ "\nOpen proof goals:\n"
++ showDoc open ""
++ if hasOpenConsStatus False dgnode
then consGoal
else ""
-- | start local theorem proving or consistency checking at a node
proveAtNode :: Maybe Bool -> GInfo -> Int -> DGraph -> IO ()
proveAtNode checkCons gInfo descr dgraph = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
le = i_libEnv ist
dgn = labDG dgraph descr
libNode = (ln, descr)
dgn' <- case hasLock dgn of
True -> return dgn
False -> do
lockGlobal gInfo
(dgraph', dgn') <- initLocking (lookupDGraph ln le) (descr, dgn)
let nwle = Map.insert ln dgraph' le
nwst = ost { i_state = Just $ ist { i_libEnv = nwle} }
writeIORef (intState gInfo) nwst
unlockGlobal gInfo
return dgn'
locked <- tryLockLocal dgn'
case locked of
False -> errorDialog "Error" "Proofwindow already open"
True -> do
let checkCons2 = fromMaybe False checkCons
action = do
guiMVar <- newMVar Nothing
res <- basicInferenceNode checkCons logicGraph libNode ln
guiMVar le (intState gInfo)
runProveAtNode checkCons2 gInfo (descr, dgn') res
unlockLocal dgn'
case checkCons2 ||
not (labelHasHiding dgn') of
True -> do
forkIO action
return ()
False -> do
b <- warningDialog "Warning"
("This node has incoming hiding links!\n" ++
"You should compute the normal form first, " ++
"preferably by applying Proofs -> TheoremHideShift," ++
" otherwise the flattened theory may be too weak. " ++
"In particular, disproving and consistency checks " ++
"might produce wrong results. " ++
" Prove anyway?")
$ Just action
unless b $ unlockLocal dgn'
return ()
runProveAtNode :: Bool -> GInfo -> LNode DGNodeLab
-> Res.Result (LibEnv, Res.Result G_theory) -> IO ()
runProveAtNode checkCons gInfo (v, dgnode) res = case maybeResult res of
Just (le, tres) -> do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
nodetext = getDGNodeName dgnode ++ " node: " ++ show v
when checkCons $ case maybeResult tres of
Just gth -> createTextSaveDisplay
("Model for " ++ nodetext)
"model.log" $ showDoc gth ""
Nothing -> case diags tres of
ds -> infoDialog nodetext
$ unlines $ "could not (re-)construct a model" : map diagString ds
proofMenu gInfo "mergeDGNodeLab" $ mergeDGNodeLab gInfo
(v, labDG (lookupDGraph ln le) v)
mergeHistoryLast2Entries gInfo
Nothing -> showDiagMessAux 2 $ diags res
mergeDGNodeLab :: GInfo -> LNode DGNodeLab -> LibEnv -> IO (Res.Result LibEnv)
mergeDGNodeLab gInfo (v, new_dgn) le = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return (Result [] (Just le))
Just ist -> do
let ln = i_ln ist
dg = lookupDGraph ln le
old_dgn = labDG dg v
return $ do
theory <- joinG_sentences (dgn_theory old_dgn) $ dgn_theory new_dgn
let new_dgn' = old_dgn { dgn_theory = theory }
dg'' = changeDGH dg $ SetNodeLab old_dgn (v, new_dgn')
return $ Map.insert ln dg'' le
-- | print the id, origin, type, proof-status and morphism of the edge
showEdgeInfo :: Int -> Maybe (LEdge DGLinkLab) -> IO ()
showEdgeInfo descr me = case me of
Just e@(_, _, l) -> let estr = showLEdge e in
createTextDisplay ("Info of " ++ estr)
(estr ++ "\n" ++ showDoc l "")
Nothing -> errorDialog "Error"
("edge " ++ show descr ++ " has no corresponding edge"
++ "in the development graph")
conservativityRule :: DGRule
conservativityRule = DGRule "ConservativityCheck"
-- | check conservativity of the edge
checkconservativityOfEdge :: Int -> GInfo -> Maybe (LEdge DGLinkLab) -> IO ()
checkconservativityOfEdge _ gInfo@(GInfo{ gi_GraphInfo = actGraphInfo})
(Just (source,target,linklab)) = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
libEnv' = i_libEnv ist
lockGlobal gInfo
let (_, thTar) =
case computeTheory True libEnv' ln target of
Res.Result _ (Just th1) -> th1
_ -> error "checkconservativityOfEdge: computeTheory"
G_theory lid _sign _ sensTar _ <- return thTar
GMorphism cid _ _ morphism2 _ <- return $ dgl_morphism linklab
morphism2' <- coerceMorphism (targetLogic cid) lid
"checkconservativityOfEdge2" morphism2
let compMor = case dgn_sigma $ labDG (lookupDGraph ln libEnv') target of
Nothing -> morphism2'
Just (GMorphism cid' _ _ morphism3 _) -> case
do morphism3' <- coerceMorphism (targetLogic cid') lid
"checkconservativityOfEdge3" morphism3
comp morphism2' morphism3' of
Res.Result _ (Just phi) -> phi
_ -> error "checkconservativtiyOfEdge: comp"
let (_le', thSrc) =
case computeTheory False libEnv' ln source of
Res.Result _ (Just th1) -> th1
_ -> error "checkconservativityOfEdge: computeTheory"
G_theory lid1 sign1 _ sensSrc1 _ <- return thSrc
sign2 <- coerceSign lid1 lid "checkconservativityOfEdge.coerceSign" sign1
sensSrc2 <- coerceThSens lid1 lid "checkconservativityOfEdge1" sensSrc1
let transSensSrc = propagateErrors
$ mapThSensValueM (map_sen lid compMor) sensSrc2
if length (conservativityCheck lid) < 1
then
do
errorDialog "Result of conservativity check"
"No conservativity checkers available"
unlockGlobal gInfo
else
do
checkerR <- conservativityChoser $ conservativityCheck lid
if Res.hasErrors $ Res.diags checkerR
then
do
errorDialog "Result of conservativity check"
"No conservativity checker chosen"
unlockGlobal gInfo
else
do
let chCons = checkConservativity $
fromMaybe (error "checkconservativityOfEdge4")
$ Res.maybeResult checkerR
Res.Result ds res =
chCons
(plainSign sign2, toNamedList sensSrc2)
compMor $ toNamedList
(sensTar `OMap.difference` transSensSrc)
showObls [] = ""
showObls obls= ", provided that the following proof obligations "
++ "can be discharged:\n"
++ concatMap (flip showDoc "\n") obls
showRes = case res of
Just (Just (cst, obls)) -> "The link is "
++ showConsistencyStatus cst ++ showObls obls
_ -> "Could not determine whether link is conservative"
myDiags = showRelDiags 2 ds
createTextDisplay "Result of conservativity check"
(showRes ++ "\n" ++ myDiags)
let consShow = case res of
Just (Just (cst, _)) -> cst
_ -> Unknown "Unknown"
consNew csv = if show csv == showToComply consShow
then
Proven conservativityRule emptyProofBasis
else
LeftOpen
(newDglType, change) = case dgl_type linklab of
GlobalThm proven conserv _ ->
(GlobalThm proven conserv $ consNew conserv, True)
LocalThm proven conserv _ ->
(LocalThm proven conserv $ consNew conserv, True)
t -> (t, False)
provenEdge = (source
,target
,linklab
{
dgl_type = newDglType
}
)
changes = if change then [ DeleteEdge (source,target,linklab)
, InsertEdge provenEdge ] else []
dg = lookupDGraph ln libEnv'
nextGr = changesDGH dg changes
newLibEnv = Map.insert ln
(groupHistory dg conservativityRule nextGr) libEnv'
history = snd $ splitHistory dg nextGr
applyChanges actGraphInfo $ reverse
$ flatHistory history
GA.redisplay actGraphInfo
let nwst = ost { i_state = Just $ ist { i_libEnv = newLibEnv}}
writeIORef (intState gInfo) nwst
unlockGlobal gInfo
checkconservativityOfEdge descr _ Nothing =
errorDialog "Error"
("edge " ++ show descr ++ " has no corresponding edge "
++ "in the development graph")
-- | Graphical choser for conservativity checkers
conservativityChoser :: [ConservativityChecker sign sentence morphism]
-> IO
(Res.Result (ConservativityChecker
sign sentence morphism))
conservativityChoser checkers = case checkers of
[] -> return $ fail "No conservativity checkers available"
[hd] -> return $ return hd
_ ->
do
chosenOne <- listBox "Pick a conservativity checker"
$ map checker_id checkers
case chosenOne of
Nothing -> return $ fail "No conservativity checker chosen"
Just i -> return $ return $ checkers !! i
-- | converts a DGraph
convert :: GA.GraphInfo -> DGraph -> IO ()
convert ginfo dgraph = do
convertNodes ginfo dgraph
convertEdges ginfo dgraph
{- | converts the nodes of the development graph, if it has any,
and returns the resulting conversion maps
if the graph is empty the conversion maps are returned unchanged-}
convertNodes :: GA.GraphInfo -> DGraph -> IO ()
convertNodes ginfo = mapM_ (convertNodesAux ginfo) .labNodesDG
{- | auxiliary function for convertNodes if the given list of nodes is
emtpy, it returns the conversion maps unchanged otherwise it adds the
converted first node to the abstract graph and to the affected
conversion maps and afterwards calls itself with the remaining node
list -}
convertNodesAux :: GA.GraphInfo -> LNode DGNodeLab -> IO ()
convertNodesAux ginfo (node, dgnode) =
GA.addNode ginfo node (getRealDGNodeType dgnode) $ getDGNodeName dgnode
{- | converts the edges of the development graph
works the same way as convertNods does-}
convertEdges :: GA.GraphInfo -> DGraph -> IO ()
convertEdges ginfo = mapM_ (convertEdgesAux ginfo) . labEdgesDG
-- | auxiliary function for convertEges
convertEdgesAux :: GA.GraphInfo -> LEdge DGLinkLab -> IO ()
convertEdgesAux ginfo e@(src, tar, lbl) =
GA.addEdge ginfo (dgl_id lbl) (getRealDGLinkType lbl) src tar "" $ Just e
-- | show library referened by a DGRef node (=node drawn as a box)
showReferencedLibrary :: Int -> GInfo -> ConvFunc -> LibFunc -> IO ()
showReferencedLibrary descr gInfo
convGraph showLib = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
le = i_libEnv ist
refNode = labDG (lookupDGraph ln le) descr
refLibname = if isDGRef refNode then dgn_libname refNode
else error "showReferencedLibrary"
case Map.lookup refLibname le of
Just _ -> do
gInfo' <- copyGInfo gInfo refLibname
convGraph gInfo' "development graph" showLib
let gv = gi_GraphInfo gInfo'
hideNodes gInfo'
GA.redisplay gv
GA.showTemporaryMessage gv "Development Graph initialized."
return ()
Nothing -> error $ "The referenced library (" ++ show refLibname
++ ") is unknown"
-- | apply the changes of first history item (computed by proof rules,
-- see folder Proofs) to the displayed development graph
applyChanges :: GA.GraphInfo -> [DGChange] -> IO ()
applyChanges ginfo = mapM_ (applyChangesAux ginfo) . removeContraryChanges
-- | auxiliary function for applyChanges
applyChangesAux :: GA.GraphInfo -> DGChange -> IO ()
applyChangesAux ginfo change =
case change of
SetNodeLab _ (node, newLab) ->
GA.changeNodeType ginfo node $ getRealDGNodeType newLab
InsertNode (node, nodelab) ->
GA.addNode ginfo node (getRealDGNodeType nodelab) $ getDGNodeName nodelab
DeleteNode (node, _) ->
GA.delNode ginfo node
InsertEdge e@(src, tgt, lbl) ->
GA.addEdge ginfo (dgl_id lbl) (getRealDGLinkType lbl) src tgt "" $ Just e
DeleteEdge (_, _, lbl) ->
GA.delEdge ginfo $ dgl_id lbl
-- | display a window of translated graph with maximal sublogic.
openTranslateGraph :: LibEnv -> LIB_NAME -> HetcatsOpts
-> Res.Result G_sublogics -> ConvFunc -> LibFunc -> IO ()
openTranslateGraph libEnv ln opts (Res.Result diagsSl mSublogic) convGraph
showLib =
-- if an error existed by the search of maximal sublogicn
-- (see DGTranslation.getDGLogic), the process need not to go on.
let myErrMess = showDiagMess opts in
if hasErrors diagsSl then myErrMess diagsSl else case mSublogic of
Nothing -> errorDialog "Error" "the maximal sublogic is not found."
Just sublogic -> do
let paths = findComorphismPaths logicGraph sublogic
if null paths then
errorDialog "Error" "This graph has no comorphism to translation."
else do
-- the user choose one
sel <- listBox "Choose a logic translation"
$ map show paths
case sel of
Nothing -> errorDialog "Error" "no logic translation chosen"
Just j -> do
-- graph translation.
let Res.Result diagsTrans mLEnv =
libEnv_translation libEnv $ paths !! j
case mLEnv of
Just newLibEnv -> do
showDiagMess opts $ diagsSl ++ diagsTrans
dg_showGraphAux
(\gI -> do
ost <- readIORef $ intState gI
let nwst = case i_state ost of
Nothing -> ost
Just ist ->
ost{i_state = Just ist{
i_libEnv = newLibEnv,
i_ln = ln }}
writeIORef (intState gI) nwst
convGraph (gI{ gi_hetcatsOpts = opts})
"translation Graph" showLib)
Nothing -> myErrMess $ diagsSl ++ diagsTrans
dg_showGraphAux :: (GInfo -> IO ()) -> IO ()
dg_showGraphAux convFct = do
useHTk -- All messages are displayed in TK dialog windows
-- from this point on
gInfo <- emptyGInfo
convFct gInfo
let actGraphInfo = gi_GraphInfo gInfo
GA.deactivateGraphWindow actGraphInfo
GA.redisplay actGraphInfo
GA.layoutImproveAll actGraphInfo
GA.activateGraphWindow actGraphInfo
-- DaVinciGraph to String
-- Functions to convert a DaVinciGraph to a String to store as a .udg file
-- | saves the uDrawGraph graph to a file
saveUDGraph :: GInfo -> Map.Map DGNodeType (Shape value, String)
-> Map.Map DGEdgeType (EdgePattern GA.EdgeValue, String) -> IO ()
saveUDGraph gInfo@(GInfo { gi_GraphInfo = graphInfo
, gi_hetcatsOpts = opts
}) nodemap linkmap = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let ln = i_ln ist
maybeFilePath <- fileSaveDialog ((rmSuffix $ libNameToFile opts ln) ++ ".udg")
[ ("uDrawGraph",["*.udg"])
, ("All Files", ["*"])] Nothing
case maybeFilePath of
Just filepath -> do
GA.showTemporaryMessage graphInfo "Converting graph..."
nstring <- nodes2String gInfo nodemap linkmap
writeFile filepath nstring
GA.showTemporaryMessage graphInfo $ "Graph stored to " ++ filepath ++ "!"
Nothing -> GA.showTemporaryMessage graphInfo "Aborted!"
-- | Converts the nodes of the graph to String representation
nodes2String :: GInfo -> Map.Map DGNodeType (Shape value, String)
-> Map.Map DGEdgeType (EdgePattern GA.EdgeValue, String)
-> IO String
nodes2String gInfo@(GInfo { gi_GraphInfo = graphInfo }) nodemap linkmap = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return []
Just ist -> do
let le = i_libEnv ist
ln = i_ln ist
nodes <- filterM (\(n,_) -> do b <- GA.isHiddenNode graphInfo n
return $ not b)
$ labNodesDG $ lookupDGraph ln le
nstring <- foldM (\s node -> do
s' <- (node2String gInfo nodemap linkmap node)
return $ s ++ (if s /= "" then ",\n " else "") ++ s')
"" nodes
return $ "[" ++ nstring ++ "]"
-- | Converts a node to String representation
node2String :: GInfo -> Map.Map DGNodeType (Shape value, String)
-> Map.Map DGEdgeType (EdgePattern GA.EdgeValue, String)
-> LNode DGNodeLab -> IO String
node2String gInfo nodemap linkmap (nid, dgnode) = do
label <- getNodeLabel gInfo dgnode
let ntype = getRealDGNodeType dgnode
(shape, color) <- case Map.lookup ntype nodemap of
Nothing -> error $ "SaveGraph: can't lookup nodetype: " ++ show ntype
Just (s, c) -> return (s, c)
let
object = "a(\"OBJECT\",\"" ++ label ++ "\"),"
color' = "a(\"COLOR\",\"" ++ color ++ "\"),"
shape' = "a(\"_GO\",\"" ++ map toLower (show shape) ++ "\")"
links <- links2String gInfo linkmap nid
return $ "l(\"" ++ show nid ++ "\",n(\"" ++ show ntype ++ "\","
++ "[" ++ object ++ color' ++ shape' ++ "],"
++ "\n [" ++ links ++ "]))"
-- | Converts all links of a node to String representation
links2String :: GInfo -> Map.Map DGEdgeType (EdgePattern GA.EdgeValue, String)
-> Int -> IO String
links2String gInfo@(GInfo { gi_GraphInfo = graphInfo
}) linkmap nodeid = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return []
Just ist -> do
let ln = i_ln ist
le = i_libEnv ist
edges <- filterM (\ (src, _, edge) -> do
let eid = dgl_id edge
b <- GA.isHiddenEdge graphInfo eid
return $ not b && src == nodeid)
$ labEdgesDG $ lookupDGraph ln le
foldM (\ s edge -> do
s' <- link2String linkmap edge
return $ s ++ (if s /= "" then ",\n " else "") ++ s') "" edges
-- | Converts a link to String representation
link2String :: Map.Map DGEdgeType (EdgePattern GA.EdgeValue, String)
-> LEdge DGLinkLab -> IO String
link2String linkmap (nodeid1, nodeid2, edge) = do
let (EdgeId linkid) = dgl_id edge
ltype = getRealDGLinkType edge
(line, color) <- case Map.lookup ltype linkmap of
Nothing -> error $ "SaveGraph: can't lookup linktype: " ++ show ltype
Just (l, c) -> return (l, c)
let
nm = "\"" ++ show linkid ++ ":" ++ show nodeid1 ++ "->"
++ show nodeid2 ++ "\""
color' = "a(\"EDGECOLOR\",\"" ++ color ++ "\"),"
line' = "a(\"EDGEPATTERN\",\"" ++ map toLower (show line) ++ "\")"
return $ "l(" ++ nm ++ ",e(\"" ++ show ltype ++ "\","
++ "[" ++ color' ++ line' ++"],"
++ "r(\"" ++ show nodeid2 ++ "\")))"
-- | Returns the name of the Node
getNodeLabel :: GInfo -> DGNodeLab -> IO String
getNodeLabel (GInfo {internalNamesIORef = ioRefInternal}) dgnode = do
internal <- readIORef ioRefInternal
let ntype = getDGNodeType dgnode
return $ if (not $ showNames internal) &&
elem ntype ["open_cons__internal"
, "proven_cons__internal"
, "locallyEmpty__open_cons__internal"
, "locallyEmpty__proven_cons__internal"]
then "" else getDGNodeName dgnode