Changes for page Available Topics
Last modified by Niklas Rentz on 2025/03/13 09:21
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. ima1 +XWiki.ssm - Content
-
... ... @@ -6,105 +6,106 @@ 6 6 7 7 {{toc/}} 8 8 9 -= BachelorTopics=9 += Graph Layout = 10 10 11 - ==GraphLayout==11 +**Advisors:** Ulf Rüegg, Christoph Daniel Schulze. 12 12 13 -* (% style="line-height: 1.4285715;" %)**Implement Greedy Switch Heuristic for Crossing Minimization**(%%) 14 -The order of nodes in a layer determines the number of crossings and is computed during the crossing minimization step. The results can usually be further improved by switching the order of nodes around, which we currently lack proper algorithms for. 15 -* **{{jira columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-891"}}KIPRA-891{{/jira}}Layering Algorithms** 16 -Implement an alternative algorithm for the layer assignment problem used in the layer-based approach to graph layout. 17 -* **Tight Packing of Connected Components** 18 -Different connected components of a graph are often laid out separately and combined again afterwards. This combination step often produces too much whitespace. Research relevant 2D packing literature and implement a better solution. 19 -* **{{jira columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-1031"}}KIPRA-1031{{/jira}}Integrate KIML with JGraph** 20 -Provide automatic layout through KIML for the JGraph diagram library and develop a simple JGraph-based graph editor to test the integration with. 21 -* **{{jira showSummary="true" columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-1214"}}KIPRA-1214{{/jira}}Improved Edge Label Placement** 13 +* **Tight Packing of Connected Components** (Bachelor) 14 +Different connected components of a graph are often laid out separately and combined again afterwards. This combination step often produces too much whitespace. Research relevant 2D packing literature and implement a better solution. 15 +{{jira columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-1262"}}KIPRA-1262{{/jira}}\\ 16 +* **{{jira columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-1031"}}KIPRA-1031{{/jira}}Integrate KIML with JGraph** (Bachelor) 17 +Provide automatic layout through KIML for the JGraph diagram library and develop a simple JGraph-based graph editor to test the integration with.\\ 18 +* **{{jira showSummary="true" columns="key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution" id="KIELER JIRA" serverId="2851bd34-0bf1-3f02-ab12-7d77ccab0fae" key="KIPRA-1214"}}KIPRA-1214{{/jira}}Improved Edge Label Placement** (Bachelor) 22 22 Our layout algorithm already supports the placement of edge labels. However, there's still room for improvement... 20 +* **Layering Algorithms** (Bachelor, Master) 21 +Implement an alternative algorithm for the layer assignment problem used in the layer-based approach to graph layout. The focus of the algorithm could the consideration of the number of edge crossings, a given aspect ratio, or overall compactness. 22 +* **Node Placement With a Focus on Compactness** (Master) 23 +Node placement algorithms often try to draw as many edges as straight lines as possible. However, that usually results in less compact diagrams. The focus of this topic would be to devise or adapt a node placement algorithm that tries to strike a balance between straightness and compactness. 24 +* **Compound Graph Layout** (Master) 25 +Design and implement new concepts for computing layer-based layouts of compound graphs. The main focus shall be on //maintainability//: ensuring that the implementation can be kept working over the years. The main area to be considered here is the crossing minimization phase. 26 +* **Force Based Drawing with Port Constraints** (Master) 27 +Develop methods for integrating port constraints in force-based drawing approaches. The resulting node placement shall be evaluated using an edge router such as [[libavoid>>url:http://www.adaptagrams.org/||shape="rect"]] on the model library of [[Ptolemy>>url:http://ptolemy.eecs.berkeley.edu/||shape="rect"]]. 28 +* **Combining Forces and Layers** (Master)** 29 +**Design and implement a layout algorithm that combines the force-based and the layer-based approaches. The first three phases of the layer-based approach shall be replaced by a node distribution computed with a force-based approach. 23 23 24 -= =Modeling Pragmatics ==31 += Modeling Pragmatics = 25 25 26 -* **Comment Attachment** 33 +**Advisors:** Reinhard von Hanxleden, Ulf Rüegg, Christoph Daniel Schulze. 34 + 35 +* **Comment Attachment** (Bachelor) 27 27 When computing a new layout for a diagram that contains comments (comparable to comments in source code), the comments often get placed far away of the nodes they refer to. This is because often the reference is not explicitly encoded in the original model. We have used a distance-based metric in the past to discover references automatically, but there are lots of ideas for improvement. This bachelor thesis would implement them, perhaps come up with additional ideas, and finally evaluate them in a thorough experiment. 28 -* **Control Flow Graph Exploration / Visualization** 29 -Use pragmatics concepts (automatic layout, focus & context) for exploring/visualizing control flow graphs and specific paths, eg. as computed by OTAWA WCET analysis tool, eg. using K lighd.30 -* ** OMGDD Format**31 - Explorethemappingof [[KGraph>>doc:KGraphMeta Model]]/ [[KRendering>>doc:TheKRenderingNotationModel]]to the[[DiagramDefinition>>url:http://www.omg.org/spec/DD/||shape="rect"]] format oftheOMG.37 +* **Control Flow Graph Exploration / Visualization** (Bachelor) 38 +Use pragmatics concepts (automatic layout, focus & context) for exploring/visualizing control flow graphs and specific paths, eg. as computed by OTAWA WCET analysis tool, eg. using KLighD. 39 +* **Compound Graph Exploration** (Bachelor, Master) 40 +A new graph exploration approach should be examined which is uses different zoom levels for different compound nodes. This tries to map the "Google Maps approach" of only showing the information of interest at any given zoom level to the field of graph exploration. 32 32 33 -= =Semantics and Synchronous Languages ==42 += Semantics and Synchronous Languages = 34 34 35 -* **Validation Manager for Models** 44 +**Advisors:** Christian Motika, Steven Smyth 45 + 46 +* **Automatic documentation generation for model-based languages **(Bachelor) 47 +Develop an automatic SCCharts documentation & comment system 48 +* **Merging SCCharts and KLOTS** (Bachelor) 49 +Implement KLOTS as demonstrator extension of the KIELER SCCharts implementation 50 +* **On the usability of the KIELER SCCharts compiler** (Bachelor) 51 +Evaluate the actual implementation of the KIELER SCCharts compiler and provide suggestions for improvements, i.e. the usability as standalone (commandline) compiler 52 +\\ 53 +* **Validation Manager for Models **(Bachelor/Master) 36 36 Develop an integrated, flexible and generic syntactic validation framework for models (e.g. Esterel or SyncCharts). 37 -* **SCCharts compiler validation with Esterel** 55 +* **SCCharts compiler validation with Esterel **(Bachelor/Master) 38 38 Automate the validation of the SCCharts compiler using the Esterel simulation. 39 -* **Transformation from SCCharts to Esterel** [possiblyalsoTopic]57 +* **Transformation from SCCharts to Esterel** (Bachelor/Master) 40 40 Develop a transformation in Xtend2 to generate Esterel code for SCCharts. 41 -* **Hardware Synthesis from SCCharts to FPGA **[possibly also Master Topic] 42 -Use the circuit-based code generation to produce code for FPGAs 43 -* **Automatic documentation generation **[possibly also Master Topic] 44 -Develop an automatic SCCharts documentation system 45 -* **Optimizations for the SCCharts compiler **[possibly also Master Topic] 46 -Profile the actual SCCharts compiler and apply optimizations 47 -* **Multi-core SCCharts compiler **[possibly also Master Topic] 48 -Implement the possibility to use more than one core to compile large SCCharts 49 -* **Adding dataflow to SCCharts** [possibly also Master Topic] 50 -Add dataflow to SCCharts 51 - 52 -== PRETSY / PRETSY2 == 53 - 54 -* **Real-time extensions for SCCharts** [possibly also Master Topic] 55 -Make the timing instructions //delay_until// und //exception_on_expire// of the [[FlexPRET>>url:http://rtsys.informatik.uni-kiel.de/confluence/Multithreaded/Multicore execution of SCCharts Evaluate possibilities to preserve parallelism in SCCharts, implement mapping for (fine grained) multithreading and multicore based on the FlexPRET||shape="rect"]] processor available in SCCharts. 56 -* See also Semantics and Synchronous Languages: **Adding dataflow to SCCharts** 57 - 58 -== Miscellaneous Topics == 59 - 60 -* **Developing an Info Screen** 61 -Info screens are screens that present data in ways that can be easily understood. This includes static data (project description graphics, members of a team, ...) as well as dynamically aggregated data (bug statistics, automatic build overviews, ...). This topic is about developing such an info screen for our group and making it easily configurable. 62 - 63 ----- 64 - 65 -= (% style="color: rgb(0,0,0);" %)Master Topics(%%) = 66 - 67 -(% style="color: rgb(0,0,0);" %)(see also Bachelor Topics for potentially expansible topics) 68 - 69 - 70 -== Graph Layout == 71 - 72 -* **Layering Algorithms** 73 -Develop an alternative algorithm for the layer assignment problem used in the layer-based approach to graph layout. The algorithm shall be extended to consider the number of edge crossings and an optimal aspect ratio. 74 -* **Node Placement** 75 -Develop a new node placement algorithm that finds a good balance between keeping edges straight and keeping the drawing from getting too big. 76 -* (% style="line-height: 1.4285715;" %)**Compound Graph Layout**(%%) 77 -Design and implement new concepts for computing layer-based layouts of compound graphs. The main focus shall be on //maintainability//: ensuring that the implementation can be kept working over the years. 78 -* **Force Based Drawing with Port Constraints** 79 -Develop methods for integrating port constraints in force-based drawing approaches. The resulting node placement shall be evaluated using an edge router such as [[libavoid>>url:http://www.adaptagrams.org/||shape="rect"]] on the model library of [[Ptolemy>>url:http://ptolemy.eecs.berkeley.edu/||shape="rect"]]. 80 -* **Combining Forces and Layers 81 -**Design and implement a layout algorithm that combines the force-based and the layer-based approaches. The first three phases of the layer-based approach shall be replaced by a node distribution computed with a force-based approach. 82 - 83 -== Modeling Pragmatics == 84 - 85 -* **Diagram Description Language** 86 -Developing the concepts and implementation of a diagram description language based on Klighd, with SyncCharts as application example. 87 - 88 -== Semantics and Synchronous Languages == 89 - 90 -* **Quartz** 59 +* **Hardware Synthesis from SCCharts to FPGA **(Bachelor/Master) 60 +Use the circuit-based code generation approach to produce code for FPGAs 61 +* (% style="line-height: 1.4285715;" %)**Optimization of the SCCharts compiler **(%%)(Bachelor/Master) 62 +Profile the actual SCCharts compiler and apply optimizations; also evaluate the possibility to use multiple cores for compilation 63 +* **Optimization of the SCCharts transformations** (Bachelor/Master) 64 +Profile the actual SCCharts transformations and apply optimizations 65 +* **SCCharts Andriod backend for Mini Drones** (Bachelor/Master) [work in progress, Bachelor/Master project summer term 2015] 66 +Develop a new code generation backend for SCCharts for Andriod applications with Mini Drones as demonstrator 67 +* **On the pragmatics of modelling large models in SCCharts** (Bachelor/Master) 68 +Evaluate the possibilities to create and maintain large models in model-based languages (i.e. SCCharts) and provide suggestions for improvements 69 +* **Extend the SC MoC to handle priority-based variable accesses** (Bachelor/Master) 70 +Add priorities to variable accesses to extend the SC MoC and therefore the number of valid sequentially constructive synchronous programs. 71 +\\ 72 +* **Detecting tick boundaries in SCCharts **(Master/Bachelor) 73 +Implement an algorithm that detects tick boundaries (in concurrent) threads and therefore improves the scheduling 74 +* **Efficient data dependency analyses in SCCharts** (Master/Bachelor) 75 +Implement data dependency analyses for SCCharts to improve static scheduling of the compiler 76 +* **KIELER evaluation environment for synchronous languages** (Master/Bachelor) 77 +Develop a reliable evaluation environment to compare common synchronous languages (i.e. Esterel/SyncCharts & SCCharts) 78 +* **Raceyard evaluation** (Master/Bachelor) 79 +Evaluate the possibility for the use of SCCharts in the Raceyard context and pave the way for future experiments 80 +\\ 81 +* **Quartz **(Master) 91 91 Integrate the synchronous Quartz language into KIELER for validation purposes and teaching. 92 -* **Implementation of a priority-based compilation approach** 83 +* **Implementation of a priority-based compilation approach **(Master) [work in progress, Caroline Butschek] 93 93 Implement the SyncCharts priority-based compilation approach into the SCCharts compiler chain. 94 -* **Curing Schizophrenia in SCCharts** 95 -Develop new synchronizer to handle schizophrenia properly (e.g. depth join). 96 -* **Detecting tick boundaries in SCCharts** 97 -Implement an algorithm that detects tick boundaries (in concurrent) threads and therefore improves the scheduling 98 -* **Multithreaded/Multicore execution of SCCharts **(see below PRETSY/PRETSY2)** 85 +* **From Esterel to SCL **(Master) [work in progress, Karsten Rathlev] 86 +Implement transformations that translate Esterel programs to SCL 87 +* **Curing Schizophrenia in SCCharts **(Master) 88 +Develop new synchronizer to handle schizophrenia properly (e.g. depth join).** 99 99 ** 100 -* **Railway 2.0**90 +* **Railway 4.0 **(Master) [work in progress, Nis Wechselberg] 101 101 Design a new and modern hardware controlling (Version 4) for the railway installation. 102 102 103 -= =PRETSY / PRETSY2 ==93 += PRETSY / PRETSY2 = 104 104 105 -* **Multithreaded/Multicore execution of SCCharts** 106 -Evaluate possibilities to preserve parallelism in SCCharts, implement mapping for (fine grained) multithreading and multicore 107 -based on the [[FlexPRET>>url:http://www.eecs.berkeley.edu/Pubs/TechRpts/2013/EECS-2013-172.pdf||shape="rect"]] processor.** 108 -** 95 +**Advisors:** Insa Fuhrmann, Steven Smyth 109 109 110 - 97 +* **Real-time extensions for SCCharts** (Bachelor/Master) 98 +Make the timing instructions //delay_until// und //exception_on_expire// of the [[FlexPRET>>url:http://rtsys.informatik.uni-kiel.de/confluence/Multithreaded/Multicore execution of SCCharts Evaluate possibilities to preserve parallelism in SCCharts, implement mapping for (fine grained) multithreading and multicore based on the FlexPRET||shape="rect"]] processor available in SCCharts. 99 +* **Adding dataflow to SCCharts** (Bachelor/Master) [work in progress, Axel Umland] 100 +Add dataflow to SCCharts 101 +\\ 102 +* **Multithreaded/Multicore execution of SCCharts **(Master/Bachelor) [work in progress, Tibor Weiß] 103 +Evaluate possibilities to preserve parallelism in SCCharts, implement mapping for (fine grained) multithreading and multicore 104 +based on the [[FlexPRET>>url:http://www.eecs.berkeley.edu/Pubs/TechRpts/2013/EECS-2013-172.pdf||shape="rect"]] processor. 105 + 106 += (% style="color: rgb(0,0,0);" %)Miscellaneous Topics(%%) = 107 + 108 +**Advisors:** to be determined. 109 + 110 +* **Developing an Info Screen** (Bachelor) 111 +Info screens are screens that present data in ways that can be easily understood. This includes static data (project description graphics, members of a team, ...) as well as dynamically aggregated data (bug statistics, automatic build overviews, ...). This topic is about developing such an info screen for our group and making it easily configurable.
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -10747 9701 +10751487 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/RTSYS/pages/10747 970/Topics for Student Theses1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/RTSYS/pages/10751487/Topics for Student Theses