Skip to content

Commit

Permalink
Updates to README
Browse files Browse the repository at this point in the history
  • Loading branch information
cactusbranch01 committed May 4, 2024
1 parent 5802ef8 commit b33ecb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@



This directory contains Python scripts designed to facilitate the analysis of merge conflicts using various merge tools. The scripts allow users to recreate merges, analyze conflicts, and compare different merge algorithms' effectiveness.
This directory contains Python scripts designed to facilitate the analysis of merge conflicts using various merge tools. The scripts allow users to recreate merges, analyze conflicts, and compare different merge algorithms' across the base, conflict, and programmer merge.



Expand All @@ -13,19 +13,21 @@ This directory contains Python scripts designed to facilitate the analysis of me



- `diff3_analysis.py`: This script analyzes merge conflicts for two merge tools on a given conflict. The tool that failed to merge should come first as an argument.
- `diff3_analysis.py`: This script analyzes merge conflicts for two merge tools on a given conflict.

- It is different than the src/python/replay_merge, as it performs a 3 way diff between the base, conflicting branches, and the programmer merge.

- Outputs the differences between a pair of merge algorithms in a .txt file.



## Prerequisites

## Prerequisites



- Python 3.x installed on your system.
- Necessary Python packages installed (e.g., `pandas`, `GitPython`).

- Necessary Python packages installed inside conda or mamba environment(`pandas`, `GitPython`).



Expand Down
1 change: 1 addition & 0 deletions src/python/diff3_analysis.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
Recreates a merge and outputs the diff files for two algorithms for comparison on a given conflict.
Displays base, conflicting branches, and programmer merge.
See src/python/README.md for details on usage.
"""

Expand Down

0 comments on commit b33ecb1

Please sign in to comment.