Changeset 12777
- Timestamp:
- 03.11.2009 17:29:52 (3 weeks ago)
- Files:
-
- 1 modified
-
trunk/GUI/displayDependencyGraph.hs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/GUI/displayDependencyGraph.hs
r12773 r12777 105 105 106 106 exclude :: String -> Bool 107 exclude s = not $108 isPrefixOf "ATC." s || isPrefixOf ".ATC_" (dropWhile (/= '.') s)107 exclude s = not 108 $ isPrefixOf "ATC." s || isPrefixOf ".ATC_" (dropWhile (/= '.') s) 109 109 || Set.member s (Set.fromList 110 110 [ "Isabelle.CreateTheories" 111 , "CspCASLProver.Utils", "CspCASLProver.IsabelleUtils" 112 , "CspCASLProver.TransProcesses", "CspCASLProver.CspCASLProver" 113 , "CASL.QuickCheck" 111 114 , "OWL.StructureAnalysis", "OWL.OWLAnalysis" 112 , "OWL.ProvePellet" 115 , "OWL.ProvePellet", "OWL.ProveFact" 116 , "Proofs.InferBasic", "Proofs.BatchProcessing" 117 , "Comorphisms.GetPreludeLib" 118 , "Maude.Maude2DG", "Maude.PreComorphism" 113 119 , "Haskell.Haskell2DG", "Haskell.CreateModules" 114 , "Comorphisms.KnownProvers", "Interfaces.GenericATPState", "CMDL.Utils" 115 , "GUI.Utils", "GUI.ProofManagement" -- Proofs 116 , "Proofs.Automatic", "Driver.Options" -- Static 117 , "Proofs.EdgeUtils", "Proofs.StatusUtils" -- Driver 118 , "Proofs.BatchProcessing", "Interfaces.GenericATPState" 120 , "Comorphisms.KnownProvers", "Comorphisms.LogicGraph" 121 , "Interfaces.GenericATPState" 122 , "GUI.Utils" 123 , "Driver.Options" -- Static 119 124 , "GUI.GenericATP", "SoftFOL.CreateDFGDoc" 120 125 , "SoftFOL.MathServMapping", "SoftFOL.ProveMathServ" … … 125 130 , "Propositional.Prove" 126 131 , "Modifications.ModalEmbedding" 127 , "Static.AnalysisLibrary" 128 , "OMDoc.OMDocDefs", "OMDoc.OMDocOutput" 132 , "Static.AnalysisLibrary", "Static.WACocone" 133 , "OMDoc.OMDocDefs", "OMDoc.OMDocOutput", "OMDoc.DataTypes" 134 , "OMDoc.Export", "OMDoc.Sentences" 129 135 , "OMDoc.OMDocInput", "OMDoc.HetsDefs", "Debug.Trace" 130 136 ])