Skip to content
Snippets Groups Projects
Commit 5030b391 authored by Michael Youkeim's avatar Michael Youkeim
Browse files

Merge branch 'acdc-algo' into 'main'

acdc-algo-done

See merge request deepesh/dsse-g1!2
parents c557c7dd 18f56975
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
#!/bin/bash
# Path to the .rsf file
DEPS_FILE="/Users/mukulsachdeva/DSSE-Project/out.rsf"
# Define the output directory for ACDC results
OUTPUT_DIR="/Users/mukulsachdeva/DSSE-Project/acdc_output"
# Path to the ACDC jar file
ACDC_JAR="/Users/mukulsachdeva/DSSE-Project/arcade_core-ACDC.jar"
# Ensure the output directory exists
mkdir -p $OUTPUT_DIR
# Extract filename without extension for output naming
filename=$(basename -- "$DEPS_FILE")
filename="${filename%.*}"
# Define output file path
output_file="$OUTPUT_DIR/${filename}_acdc_output.txt"
echo "Processing file: $DEPS_FILE"
# Run the ACDC jar on the dependencies file
java -jar $ACDC_JAR $DEPS_FILE $output_file
echo "Output generated: $output_file"
echo "All files processed."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment