mirror of
https://github.com/dragonheim/gagent.git
synced 2025-04-03 21:42:39 -07:00
fix: [CI SKIP] Changed gagent hints from comments to an array that can be modified at run time.
This commit is contained in:
parent
8b405cb2c5
commit
ed40869730
1 changed files with 9 additions and 16 deletions
25
README.md
25
README.md
|
@ -18,27 +18,20 @@ Imagine, for a moment, that you are on Mars and need to perform a data search in
|
|||
1 : ###################
|
||||
2 : ### Hello Earth ###
|
||||
3 : ###################
|
||||
4 : # HINT START
|
||||
5 : # - thermal measurements
|
||||
6 : # - gravity measurements
|
||||
7 : # - gravity fluctuations
|
||||
8 : # HINT END
|
||||
9 : proc hello_earth {} {
|
||||
10 : puts "Hello Earth, does localized tempurature variations alter specific gravity?"
|
||||
11 : }
|
||||
12 : hello_earth
|
||||
4 : array set GHINT ["thermal measurements" "gravity measurements" "gravity fluctuations"]
|
||||
5 : proc hello_earth {} {
|
||||
6 : puts "Hello Earth, does localized tempurature variations alter specific gravity?"
|
||||
7 : }
|
||||
8 : hello_earth
|
||||
```
|
||||
Lines 1 - 3 are simple comments
|
||||
Lines 1 - 3 are simple comments.
|
||||
|
||||
Line 4 indicates the start of the hints.
|
||||
Line 4 sets the hint(s) as an array.
|
||||
|
||||
Lines 5 - 7 are a list of hints that the router will use to determine which router(s) may have domain specific information.
|
||||
Lines 5 - 7 defines a procedure called hello_earth that will perform the actual search
|
||||
|
||||
Line 8 indicates the end of the hints.
|
||||
Line 8 executes the hello_earth procedure defined above.
|
||||
|
||||
Lines 9 - 11 are a tcl procedure that will be executed on the worker before sending the results back to the client.
|
||||
|
||||
Line 12 executes the procedure defined above.
|
||||
|
||||
## History
|
||||
More information about Agent TCL / D'Agents can be found in the original [documentation](http://www.cs.dartmouth.edu/~dfk/agents/pub/agents/doc.5.1.ps.gz), and in the project's [wiki](https://git.dragonheim.net/dragonheim/gagent/wiki/_pages).
|
||||
|
|
Loading…
Add table
Reference in a new issue