Changeset 12790
- Timestamp:
- 05.11.2009 20:46:54 (2 weeks ago)
- Files:
-
- 1 modified
-
trunk/CMDL/InfoCommands.hs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CMDL/InfoCommands.hs
r12787 r12790 18 18 ( cNodes 19 19 , cShowDgGoals 20 , cDisplayGraph21 20 , cShowNodeProvenGoals 22 21 , cShowNodeUnprovenGoals … … 39 38 import Common.UniUtils 40 39 import GUI.Taxonomy 41 import GUI.ShowGraph42 40 #endif 43 41 … … 63 61 import Logic.Prover (SenStatus) 64 62 import Logic.Comorphism (AnyComorphism) 65 66 import Driver.Options (defaultHetcatsOpts)67 63 68 64 import Interfaces.Command (cmdNameStr, describeCmd, showCmd) … … 303 299 return $ genMessage [] (intercalate "\n" $ sort ls) state 304 300 305 -- draw graph306 cDisplayGraph::CmdlState -> IO CmdlState307 cDisplayGraph state308 = case i_state $ intState state of309 #ifdef UNI_PACKAGE310 Just dgState ->311 do312 -- obtain the name of the last loaded library for313 -- documentation/debugging reasons314 let flnm = fileLoaded $ prompter state315 showGraph flnm defaultHetcatsOpts ( Just316 (i_ln dgState, i_libEnv dgState))317 return state318 #endif319 -- no development graph present320 _ -> return state321 322 301 cHelp :: [CmdlCmdDescription] -> CmdlState -> IO CmdlState 323 302 cHelp allcmds state = do