Commit 437cc98b authored by Andrey Filippov's avatar Andrey Filippov

comments fix

parent bfa720f4
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
from __future__ import print_function from __future__ import print_function
from __future__ import division from __future__ import division
# Copyright (C) 2017, Elphel.inc. # Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
...@@ -137,7 +136,7 @@ def get_fold_indices(x, n = 8): ...@@ -137,7 +136,7 @@ def get_fold_indices(x, n = 8):
return ind return ind
def create_fold(n = 8): # n - DCT and window size def create_fold(n = 8): # n - DCT and window size
fold_index = (n*n) * [4*[0]] # new int[n*n][4]; # fold_index = (n*n) * [4*[0]] # new int[n*n][4];
fold_index = [] fold_index = []
for _ in range(n*n): for _ in range(n*n):
fold_index.append([0,0,0,0]) fold_index.append([0,0,0,0])
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
from __future__ import print_function from __future__ import print_function
from __future__ import division from __future__ import division
# Copyright (C) 2017, Elphel.inc. # Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
from __future__ import print_function from __future__ import print_function
from __future__ import division from __future__ import division
# Copyright (C) 2017, Elphel.inc. # Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment