-
Notifications
You must be signed in to change notification settings - Fork 3
Jesse user interface thesis project #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…isplays an IR in a html script
…ile and updates in the api-information.md file
…erface-thesis-proj
…IR between transform passes on the localhost webpage
… and creates working IR-IR display with react and typescript
…erface-thesis-proj # Conflicts: # build.sc # docs/src/development/api-information.md # src/main/scala/ir/transforms/Simp.scala
… list of IRs. Also, Creates an endpoint to send a procedure name mapping with line stariting numbers through the API
…transform pass options
…erface-thesis-proj
…ay and procedure selection button
…s nodes in the Minimap and makes it pannable. Reverses the order of epochs
…rocedure from Header view
…ow__node not to be updated when custom-flow-node is updated.
…component pattern
…n. Only light and dark available
… white outline anymore
…erface-thesis-proj # Conflicts: # src/main/scala/ir/transforms/Simp.scala # src/main/scala/util/RunUtils.scala
Contributor
|
scalafmt changes needed. options to apply scalafmt changes:run this command: echo 'From aa73a3728e250d6f2975daf3681fdcaad64ae62a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 13 Nov 2025 10:49:15 +0000
Subject: [PATCH] automated scalafmt
---
src/main/scala/API/ApiServer.scala | 28 ++++++++-----------
.../ir/transforms/SimplifyPipeline.scala | 6 ++--
2 files changed, 14 insertions(+), 20 deletions(-)
diff --git a/src/main/scala/API/ApiServer.scala b/src/main/scala/API/ApiServer.scala
index 01db207..65910b4 100644
--- a/src/main/scala/API/ApiServer.scala
+++ b/src/main/scala/API/ApiServer.scala
@@ -2,20 +2,15 @@ package API
-import ir.Program
-import util.RunUtils
-import util.BASILConfig
-import util.ILLoadingConfig
-
-import org.typelevel.log4cats.slf4j.Slf4jFactory
-import org.typelevel.log4cats.Logger
-import org.typelevel.log4cats.LoggerName
-import org.typelevel.log4cats.LoggerFactory
-import org.http4s._
-import org.http4s.implicits._
-import org.http4s.server.Router
+import cats.effect.*
+import cats.effect.std.Semaphore
+import cats.implicits.*
+import com.comcast.ip4s.*
+import ir.{Procedure, Program}
+import org.http4s.*
import org.http4s.ember.server.EmberServerBuilder
-import com.comcast.ip4s._
+import org.http4s.implicits.*
+import org.http4s.server.Router
+import org.typelevel.log4cats.slf4j.Slf4jFactory
+import org.typelevel.log4cats.{Logger, LoggerFactory, LoggerName}
+import util.{BASILConfig, ILLoadingConfig, RunUtils}
-import cats.implicits._
-import cats.effect._
-import cats.effect.std.Semaphore
import scala.collection.mutable
@@ -23,3 +18,2 @@ import scala.collection.mutable.ArrayBuffer
import scala.reflect.Selectable.reflectiveSelectable
-import ir.Procedure
diff --git a/src/main/scala/ir/transforms/SimplifyPipeline.scala b/src/main/scala/ir/transforms/SimplifyPipeline.scala
index 1ca2374..c8aa76d 100644
--- a/src/main/scala/ir/transforms/SimplifyPipeline.scala
+++ b/src/main/scala/ir/transforms/SimplifyPipeline.scala
@@ -7,4 +7,4 @@ import ir.dsl.IRToDSL
import translating.PrettyPrinter.*
-import util.{AnalysisResultDotLogger, DebugDumpIRLogger, Logger, PerformanceTimer, StaticAnalysisConfig}
import util.RunUtils.addEpochSnapshot
+import util.{AnalysisResultDotLogger, DebugDumpIRLogger, Logger, PerformanceTimer, StaticAnalysisConfig}
@@ -51,3 +51,3 @@ def doSimplify(
// example of printing a simple analysis
-
+
val beforeSimplify = IRToDSL.convertProgram(ctx.program).resolve
@@ -171,3 +171,3 @@ def doSimplify(
)
-
+
// assert(program.procedures.forall(transforms.rdDSAProperty))
--
2.51.2' | git am -3or, trigger a workflow run on gh workflow run format.yml --field "autoformat=true" --ref 'Jesse-interface-thesis-proj'or, run the formatter locally: ./mill -i fmt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.