Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
redsem
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mauricio Alejandro Prieto Palacios
redsem
Commits
d63b7646
Commit
d63b7646
authored
Feb 04, 2023
by
alejandro77palacios
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Función: calcular respuestas asociadas a un grupo de estímulos
parent
de2f6314
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
src/redsem/main.py
+9
-0
No files found.
src/redsem/main.py
View file @
d63b7646
...
...
@@ -15,3 +15,12 @@ def extraer_particion(red, particion):
if
len
(
nodos_en_particion
)
==
0
:
raise
ValueError
(
f
'No hay nodos en la partición "{particion}"'
)
return
nodos_en_particion
def
obtener_respuestas_asociadas
(
red
,
*
estimulos
):
estimulos_validos
=
extraer_particion
(
red
,
'estimulo'
)
assert
set
(
estimulos
)
.
issubset
(
estimulos_validos
),
f
'Las palabras estímulo válidas son:
\n
{estimulos_validos}'
respuestas_asociadas
=
[]
for
estimulo
in
estimulos
:
respuestas_asociadas
+=
list
(
red
.
neighbors
(
estimulo
))
return
respuestas_asociadas
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment