NTL how to convert polynomial (ZZX or ZZ_pX) to string and how to assign string input to the polynomial like cin and cout operators?
I tried like the following:
ZZX a = conv<ZZX>("[2 3 12]")
But it gets error.
NTL how to convert polynomial (ZZX or ZZ_pX) to string and how to assign string input to the polynomial like cin and cout operators?
I tried like the following:
ZZX a = conv<ZZX>("[2 3 12]")
But it gets error.
Copyright © 2021 Jogjafile Inc.
As you can read from your error message: There is no function
conv
that converts a string to a polynomial or the other way around.You can use
<<
on all NTL objects, e.g.To read a string into a
ZZX
object you need to write your own function. This depends on how you actually get your input. If you read it from a file, you need to get the numbers from the string and set them via the[]
operator. If you input it via the console, you can skip the string and directly build theZZX
object.Finally you can use this to overload the
conv
function.