-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prolific, DynamicProgramming.hpp, argument incompatibility #7
Comments
Hi Ted. I wonder if replying to this will work? My vague belief is On Fri, Nov 4, 2011 at 5:14 PM, Ted Holzman
|
On 11/4/11 5:25 PM, Paul T. Edlefsen wrote:
|
---------- Forwarded message ---------- ** Paul, I know you are busy but there is another herpes project Larry would like Kurt |
in the DynamicProgramming.hpp file, on line 8087 there is a min() function call. The arguments are of different types that C++ finds incompatible. Changing the line to read:
m_sequence_count = ( ( sequence_count == 0 ) ? sequences->size() : min( (size_t) sequence_count, sequences->size() ) );
i.e. adding (size_t) cast, repairs it.
The text was updated successfully, but these errors were encountered: