Skip to content

Instantly share code, notes, and snippets.

@k3kaimu
Last active December 17, 2015 11:39
Show Gist options
  • Save k3kaimu/5603730 to your computer and use it in GitHub Desktop.
Save k3kaimu/5603730 to your computer and use it in GitHub Desktop.
gen_legendre_sequence ・全要素が1となる ・速度遅い のを修正したコード
void gen_legendre_sequence()
{
int i;
for(i = 0; i < 10223; ++i)
legendre[i] = 1;
for(i = 0; i < 10224; ++i)
legendre[(i * i) % 10223] = -1;
legendre[0] = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment