in reply to Re^3: Suggestion needed for automating 3 separate programs/components
in thread Suggestion needed for automating 3 separate programs/components
Steps involved:-
1)Select the Encoder Algorithm.
2)Load the map database of Encoder and Decoder.
3)Call the encoder function with location as input. The output of the encoder is Location Reference.
4)Call the decoder function with this Location Reference as input. The output of the decoder is again a location in file called decoded.xml
5)Compare the input of encoder with output of decoder and validate the result.
6)Repeat this process continuously for different Locations.
Pseudo Code:-
Void setEncoderVersion();
encoder.init(graph_name1);
decoder.init(graph_name2) ;
repeat this for n locations
{
LocRef = encoder.doEncode(Loc1) ;
Loc2 = decoder.doDecode(LocRef) ;
Result = compare(Loc1, Loc2);
}
Hope i have now provided all the information. Looking forward to your valuable suggestions.
Rgds,
Ashutosh
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Suggestion needed for automating 3 separate programs/components
by tirwhan (Abbot) on Nov 29, 2005 at 17:30 UTC |