mirror of https://gitlab.com/pamhyr/pamhyr2
debug print
parent
83c03c998a
commit
8e6323ae48
|
|
@ -397,12 +397,13 @@ class MeshingWithMageMailleurTT(AMeshingTool):
|
||||||
logger.info(
|
logger.info(
|
||||||
f"! {self._exe_path()} " +
|
f"! {self._exe_path()} " +
|
||||||
f"{st_file} {m_file} " +
|
f"{st_file} {m_file} " +
|
||||||
f"update_rk " +
|
f"update_kp " +
|
||||||
f"{str(step)} " +
|
f"{str(step)} " +
|
||||||
f"{limites[0]} {limites[1]} " +
|
f"{limites[0]} {limites[1]} " +
|
||||||
f"{directrices[0]} {directrices[1]} " +
|
f"{directrices[0]} {directrices[1]} " +
|
||||||
f"{orientation} {lm} {linear} " +
|
f"{orientation} {lm} {linear} " +
|
||||||
f"{origin} "
|
f"{origin} " +
|
||||||
|
f"{origin_value} "
|
||||||
)
|
)
|
||||||
proc.start(
|
proc.start(
|
||||||
self._exe_path(),
|
self._exe_path(),
|
||||||
|
|
|
||||||
|
|
@ -67,7 +67,7 @@ class PamhyrModelDict(SQLSubModel):
|
||||||
if key in self._dict:
|
if key in self._dict:
|
||||||
v = self._dict[key]
|
v = self._dict[key]
|
||||||
|
|
||||||
if type(v) is types.GeneratorType:
|
if isinstance(v, types.GeneratorType):
|
||||||
return list(v)
|
return list(v)
|
||||||
|
|
||||||
return v
|
return v
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue