This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Herb-AI/dev
Merge changes from dev
- Loading branch information
Showing
4 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
name = "HerbEvaluation" | ||
uuid = "eb1bf938-813d-4942-ac0f-b4657a683e76" | ||
authors = ["Jaap de Jong <[email protected]>"] | ||
authors = ["Jaap de Jong <[email protected]>", "Tilman Hinnerichs <[email protected]>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
HerbData = "495a3ad3-8034-41b3-a087-aacf2fd71098" | ||
HerbGrammar = "4ef9e186-2fe5-4b24-8de7-9f7291f24af7" | ||
HerbCore = "2b23ba43-8213-43cb-b5ea-38c12b45bd45" | ||
|
||
[compat] | ||
julia = "1.8" | ||
HerbData = "0.1.0" | ||
HerbGrammar = "0.1.0" | ||
HerbCore = "0.1.0" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Evaluation.jl | ||
# HerbEvaluation.jl | ||
|
||
This package provides functionality for evaluating (candidate) programs in the Herb Program Synthesis framework. `HerbEvaluation` can handle arbitrary Julia expressions, but also arbitrary other interpretors for which an evaluation function is given. | ||
|
||
For general usage please see the `HerbExamples` and our test suite. | ||
|
||
This package provides functionality for evaluating (candidate) programs in the Herb Program Synthesis framework. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module HerbEvaluation | ||
|
||
using HerbCore | ||
using HerbData | ||
using HerbGrammar | ||
|
||
|
This file contains 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