Changeset 732 for cpp/frams/genetics/genoconv.h
- Timestamp:
- 02/15/18 00:42:07 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genoconv.h
r513 r732 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 5Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 53 53 /// Any other return value is assumed to be output genotype. 54 54 /// @param map if not null, mapping informaton is requested, converter should add conversion map to this object 55 virtual SString convert(SString &i, MultiMap *map ) { return SString(); }55 virtual SString convert(SString &i, MultiMap *map, bool using_checkpoints) { return SString(); } 56 56 57 57 virtual ~GenoConverter() {} … … 78 78 /// make a genotype in other format. genotype will be invalid 79 79 /// if GenoConvManager cannot convert it. 80 Geno convert(Geno &in, char format, MultiMap *map = 0, bool *converter_missing = NULL);80 Geno convert(Geno &in, char format, MultiMap *map = 0, bool using_checkpoints = false, bool *converter_missing = NULL); 81 81 /// register GenoConverter, the added object will be automatically deleted when GenoConvManager is destructed (call removeConverter() if this is not desirable) 82 82 void addConverter(GenoConverter *conv);
Note: See TracChangeset
for help on using the changeset viewer.