fix: [CI SKIP] Changed gagent hints from comments to an array that can be modified at run time.

This commit is contained in:
James Wells 2021-06-03 20:05:59 -07:00
parent 8b405cb2c5
commit ed40869730
Signed by: jwells
GPG key ID: 73196D10B8E65666

View file

@ -18,27 +18,20 @@ Imagine, for a moment, that you are on Mars and need to perform a data search in
1 : ################### 1 : ###################
2 : ### Hello Earth ### 2 : ### Hello Earth ###
3 : ################### 3 : ###################
4 : # HINT START 4 : array set GHINT ["thermal measurements" "gravity measurements" "gravity fluctuations"]
5 : # - thermal measurements 5 : proc hello_earth {} {
6 : # - gravity measurements 6 : puts "Hello Earth, does localized tempurature variations alter specific gravity?"
7 : # - gravity fluctuations 7 : }
8 : # HINT END 8 : hello_earth
9 : proc hello_earth {} {
10 : puts "Hello Earth, does localized tempurature variations alter specific gravity?"
11 : }
12 : 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 ## 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). 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).