Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lambda-feedback/graph-eval
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: lambda-feedback/graph-eval
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cycle_detec
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 15 files changed
  • 1 contributor

Commits on Jan 29, 2026

  1. Refactor evaluation function and update schemas

    - Corrected the argument order in `evaluation_function` to match the expected signature.
    - Updated `.gitignore` to exclude Markdown files.
    - Removed legacy unittest-based test file and replaced it with a placeholder for pytest.
    - Enhanced `evaluation_function` with detailed error handling and validation using Pydantic.
    - Added new fields to `PathResult` schema for better path evaluation feedback.
    - Cleaned up the `EvaluationDetails` schema by removing unused scoring fields.
    JohnnyWan1123 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    271ab80 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2026

  1. Add cycle detection parameters and include cycle info in algorithms

    - Added `max_nodes` and `max_cycles` fields to `CycleDetectionParams` for enhanced cycle enumeration control.
    - Included `cycle_info` in the algorithms module to support cycle detection functionality.
    JohnnyWan1123 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    232806b View commit details
    Browse the repository at this point in the history
  2. Add cycle detection and shortest cycle evaluation to the evaluation f…

    …unction
    
    - Enhanced the `evaluation_function` to support cycle detection and shortest cycle evaluation.
    - Implemented logic for handling cycle detection parameters, including `find_all`, `min_length`, `max_length`, `max_nodes`, and `max_cycles`.
    - Added checks for negative cycles and updated feedback messages for cycle-related evaluations.
    - Integrated `cycle_info` to facilitate cycle-related computations and validations.
    JohnnyWan1123 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    2fb9ae6 View commit details
    Browse the repository at this point in the history
Loading